Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/16/11 12:39:32 (13 years ago)
Author:
ascheibe
Message:

#1233 removed useLocalPlugins

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4/HiveEngine.cs

    r6419 r6426  
    6868
    6969    [Storable]
    70     private bool useLocalPlugins;
    71     public bool UseLocalPlugins {
    72       get { return useLocalPlugins; }
    73       set { useLocalPlugins = value; }
    74     }
    75 
    76     [Storable]
    7770    private bool isPrivileged;
    7871    public bool IsPrivileged {
     
    114107      this.priority = original.priority;
    115108      this.executionTimeOnHive = original.executionTimeOnHive;
    116       this.useLocalPlugins = original.useLocalPlugins;
    117109      this.IsPrivileged = original.IsPrivileged;
    118110      // this.hiveExperiments = cloner.Clone(original.hiveExperiments); do not clone hiveExperiments - otherwise they would be sent with every job
     
    149141      if (firstRun) {
    150142        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();
    152144        this.AlreadyUploadedPlugins = new List<Plugin>();
    153145        firstRun = false;
     
    338330        hiveExperiment.Name = "HiveEngine Run " + hiveExperiments.Count;
    339331        hiveExperiment.DateCreated = DateTime.Now;
    340         hiveExperiment.UseLocalPlugins = this.UseLocalPlugins;
    341332        hiveExperiment.ResourceNames = this.ResourceNames;
    342333        hiveExperiment.IsPrivileged = this.IsPrivileged;
Note: See TracChangeset for help on using the changeset viewer.