Skip to content
Snippets Groups Projects
Commit e4ab1217 authored by Mick Jordan's avatar Mick Jordan
Browse files

[GR-2311] Provide finer control over FastRConfig.

parents f538f605 e4e90bd9
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,12 @@ public final class FastRConfig {
static {
String managedModeVal = System.getenv("FASTR_MANAGED");
ManagedMode = managedModeVal != null && managedModeVal.equals("true");
InternalGridAwtSupport = !ManagedMode;
if (ManagedMode) {
InternalGridAwtSupport = false;
} else {
String val = System.getProperty("fastr.internal.grid.awt.support");
InternalGridAwtSupport = val == null || val.equals("true");
}
}
private FastRConfig() {
......
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