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

Fix invalid host value returned by R REPL.

parent 34d58eb8
No related branches found
No related tags found
No related merge requests found
......@@ -768,8 +768,8 @@ public final class RContext {
return executor != null;
}
public Executor getExecutor() {
return this.executor;
public Object getExecutor() {
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