Disable the IPC sync context factory by default (can be enabled using the new environment option)

This commit is contained in:
Guillaume Nodet
2021-09-06 11:33:33 +02:00
parent 6b345fc7d9
commit db30a78841
2 changed files with 88 additions and 1 deletions

View File

@@ -247,7 +247,11 @@ public enum Environment {
/**
* Regexp pattern that will force eviction of the plugin realms if one of its dependencies matches.
*/
MVND_PLUGIN_REALM_EVICT_PATTERN("mvnd.pluginRealmEvictPattern", null, "", OptionType.STRING, Flags.OPTIONAL);
MVND_PLUGIN_REALM_EVICT_PATTERN("mvnd.pluginRealmEvictPattern", null, "", OptionType.STRING, Flags.OPTIONAL),
/**
* The SyncContextFactory to use (can be either 'noop' or 'ipc' for a server-wide factory).
*/
MVND_SYNC_CONTEXT_FACTORY("mvnd.syncContextFactory", null, "noop", OptionType.BOOLEAN, Flags.OPTIONAL);
static Properties properties;