diff --git a/Libraries/iTasks/Engine.icl b/Libraries/iTasks/Engine.icl index 3f89e234700794284cfdaf9c40fc958c5a15cad1..af311886340ea003ca2ab47b150d91d20f67223c 100644 --- a/Libraries/iTasks/Engine.icl +++ b/Libraries/iTasks/Engine.icl @@ -142,6 +142,8 @@ where ("Specify the folder containing the temporary files\ndefault: " +++ defaults.tempDirPath) , Option [] ["sapldir"] (ReqArg (\p->fmap \o->{o & saplDirPath=p}) "PATH") ("Specify the folder containing the sapl files\ndefault: " +++ defaults.saplDirPath) + , Option [] ["distributed"] (NoArg (fmap \o->{o & distributed=True})) + "Enable distributed mode (populate the symbols share)" ] onStartup :: (Task a) -> StartableTask | iTask a @@ -215,7 +217,7 @@ defaultEngineOptions world , sessionTime = {tv_sec=60,tv_nsec=0} // 1 minute, (the client pings every 10 seconds by default) , persistTasks = False , autoLayout = True - , distributed = True + , distributed = False , timeout = Just 500 , webDirPath = appDir appName +++ "-www" , storeDirPath = appDir appName +++ "-data" "stores"