Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/16/11 21:19:34 (13 years ago)
Author:
ascheibe
Message:

#1233

  • dropped dependency of Core from Executor
  • enabled sandboxing
  • moved most parts of Job handling from Core to SlaveJob to simplify locking
  • optimized how UsedCores is handled
  • SlaveStatusInfo is now thread-save and counts jobs more correct
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.4/SlaveView.cs

    r6004 r6203  
    124124      DataPoint pJobs = new DataPoint(status.Jobs.Count, status.Jobs.Count);
    125125      DataPoint pJobsAborted = new DataPoint(status.JobsAborted, status.JobsAborted);
    126       DataPoint pJobsDone = new DataPoint(status.JobsDone, status.JobsDone);
     126      DataPoint pJobsDone = new DataPoint(status.JobsFinished, status.JobsFinished);
    127127      DataPoint pJobsFetched = new DataPoint(status.JobsFetched, status.JobsFetched);
    128128
     
    131131      pJobsAborted.LegendText = "Aborted jobs: " + status.JobsAborted;
    132132      pJobsAborted.Color = System.Drawing.Color.Red;
    133       pJobsDone.LegendText = "Finished jobs: " + status.JobsDone;
     133      pJobsDone.LegendText = "Finished jobs: " + status.JobsFinished;
    134134      pJobsDone.Color = System.Drawing.Color.Green;
    135135      pJobsFetched.LegendText = "Fetched jobs: " + status.JobsFetched;
Note: See TracChangeset for help on using the changeset viewer.