- Timestamp:
- 06/16/11 12:39:32 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4/HiveEngine.cs
r6419 r6426 68 68 69 69 [Storable] 70 private bool useLocalPlugins;71 public bool UseLocalPlugins {72 get { return useLocalPlugins; }73 set { useLocalPlugins = value; }74 }75 76 [Storable]77 70 private bool isPrivileged; 78 71 public bool IsPrivileged { … … 114 107 this.priority = original.priority; 115 108 this.executionTimeOnHive = original.executionTimeOnHive; 116 this.useLocalPlugins = original.useLocalPlugins;117 109 this.IsPrivileged = original.IsPrivileged; 118 110 // this.hiveExperiments = cloner.Clone(original.hiveExperiments); do not clone hiveExperiments - otherwise they would be sent with every job … … 149 141 if (firstRun) { 150 142 TaskScheduler.UnobservedTaskException += new EventHandler<UnobservedTaskExceptionEventArgs>(TaskScheduler_UnobservedTaskException); 151 this.OnlinePlugins = ServiceLocator.Instance.CallHiveService(s => s.GetPlugins()).Where(x => x. IsLocal == false).ToList();143 this.OnlinePlugins = ServiceLocator.Instance.CallHiveService(s => s.GetPlugins()).Where(x => x.Hash != null).ToList(); 152 144 this.AlreadyUploadedPlugins = new List<Plugin>(); 153 145 firstRun = false; … … 338 330 hiveExperiment.Name = "HiveEngine Run " + hiveExperiments.Count; 339 331 hiveExperiment.DateCreated = DateTime.Now; 340 hiveExperiment.UseLocalPlugins = this.UseLocalPlugins;341 332 hiveExperiment.ResourceNames = this.ResourceNames; 342 333 hiveExperiment.IsPrivileged = this.IsPrivileged;
Note: See TracChangeset
for help on using the changeset viewer.