Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/11 17:58:59 (13 years ago)
Author:
cneumuel
Message:

#1233

  • added semaphores to ensure an appdomain is never unloaded when the start method has not finished
  • HiveEngine uploading and downloading of jobs works and is displayed in the view
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ExperimentManager/ExperimentManagerClient.cs

    r6111 r6178  
    274274      List<IPluginDescription> plugins;
    275275
    276       if (hiveJob.JobItem.ComputeInParallel &&
    277         (hiveJob.JobItem.Item is Optimization.Experiment || hiveJob.JobItem.Item is Optimization.BatchRun)) {
     276      if (hiveJob.ItemJob.ComputeInParallel &&
     277        (hiveJob.ItemJob.Item is Optimization.Experiment || hiveJob.ItemJob.Item is Optimization.BatchRun)) {
    278278        hiveJob.Job.IsParentJob = true;
    279279        hiveJob.Job.FinishWhenChildJobsFinished = true;
    280         hiveJob.JobItem.CollectChildJobs = false; // don't collect child-jobs on slaves
     280        hiveJob.ItemJob.CollectChildJobs = false; // don't collect child-jobs on slaves
    281281        jobData = hiveJob.GetAsJobData(true, out plugins);
    282282      } else {
Note: See TracChangeset for help on using the changeset viewer.