Changeset 886 for trunk/sources/HeuristicLab.Hive.Client.Core/Core.cs
- Timestamp:
- 12/02/08 19:42:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Client.Core/Core.cs
r882 r886 89 89 //clientCommunicator.LoginAsync(ConfigurationManager.GetInstance().GetClientInfo()); 90 90 91 Heartbeat beat = new Heartbeat { Interval = 5000 };91 Heartbeat beat = new Heartbeat { Interval = 30000 }; 92 92 beat.StartHeartbeat(); 93 93 … … 154 154 bool sandboxed = false; 155 155 156 AppDomain appDomain = PluginManager.Manager.CreateAndInitAppDomainWithSandbox(e.Result.JobId.ToString(), sandboxed); 156 PluginManager.Manager.Initialize(); 157 AppDomain appDomain = PluginManager.Manager.CreateAndInitAppDomainWithSandbox(e.Result.JobId.ToString(), sandboxed, typeof(TestJob)); 157 158 158 159 appDomains.Add(e.Result.JobId, appDomain);
Note: See TracChangeset
for help on using the changeset viewer.