Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/11 14:48:18 (13 years ago)
Author:
ascheibe
Message:

#1233 temporary switch to privileged sandboxing until communication between core and executor works with sandboxing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.4/Core.cs

    r6168 r6175  
    471471        if (pluginsPrepared) {
    472472          try {
    473             AppDomain appDomain = HeuristicLab.PluginInfrastructure.Sandboxing.SandboxManager.CreateAndInitSandbox(job.Id.ToString(), pluginDir, Path.Combine(pluginDir, configFileName));
     473            //TODO: switch back to unprivileged sandbox
     474            AppDomain appDomain = HeuristicLab.PluginInfrastructure.Sandboxing.SandboxManager.CreateAndInitPrivilegedSandbox(job.Id.ToString(), pluginDir, Path.Combine(pluginDir, configFileName));
    474475            appDomain.UnhandledException += new UnhandledExceptionEventHandler(AppDomain_UnhandledException);
    475476            Executor executor;
Note: See TracChangeset for help on using the changeset viewer.