Skip to content
Snippets Groups Projects
Commit 1d1afb11 authored by Christian Humer's avatar Christian Humer
Browse files

[GR-10234] Fix invalid host value returned by R REPL.

PullRequest: fastr/1648
parents 34d58eb8 733cadc3
No related branches found
No related tags found
No related merge requests found
...@@ -768,8 +768,8 @@ public final class RContext { ...@@ -768,8 +768,8 @@ public final class RContext {
return executor != null; return executor != null;
} }
public Executor getExecutor() { public Object getExecutor() {
return this.executor; return env.asGuestValue(this.executor);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment