Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/28/11 17:51:46 (13 years ago)
Author:
ascheibe
Message:

#1233

  • corrected total execution time in hive shown on status page
  • Job Manager: don't poll already finished jobs
File:
1 edited

Legend:

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

    r6863 r6941  
    516516      }
    517517      if (this.HiveTasks != null && this.HiveTasks.Count > 0 && this.GetAllHiveTasks().All(x => x.Task.Id != Guid.Empty)) {
    518         if (this.RefreshAutomatically)
     518        if (IsFinished()) {
     519          this.ExecutionState = Core.ExecutionState.Stopped;
     520          this.RefreshAutomatically = false;
     521        }
     522
     523        if (this.RefreshAutomatically) {
    519524          StartResultPolling();
     525        }
    520526      }
    521527
Note: See TracChangeset for help on using the changeset viewer.