Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/08/11 13:41:25 (13 years ago)
Author:
ascheibe
Message:

#1233 Review comments: renamed Job to Task

File:
1 edited

Legend:

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

    r6479 r6721  
    269269        log.LogMessage(string.Format("{0} finished (TotalExecutionTime: {1}).", refreshableHiveExperiment.ToString(), refreshableHiveExperiment.ExecutionTime));
    270270
    271         var failedJobs = refreshableHiveExperiment.HiveJobs.Where(x => x.Job.State == JobState.Failed);
     271        var failedJobs = refreshableHiveExperiment.HiveJobs.Where(x => x.Job.State == TaskState.Failed);
    272272        if (failedJobs.Count() > 0) {
    273           throw new HiveEngineException("Job failed: " + failedJobs.First().Job.StateLog.Last().Exception);
     273          throw new HiveEngineException("Task failed: " + failedJobs.First().Job.StateLog.Last().Exception);
    274274        }
    275275
Note: See TracChangeset for help on using the changeset viewer.