Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/02/17 09:41:39 (7 years ago)
Author:
jkarder
Message:

#2784: fixed pausing of hive tasks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive/3.3/HiveClient.cs

    r14185 r14901  
    441441        if (refreshableJob.IsFinished()) {
    442442          refreshableJob.ExecutionState = Core.ExecutionState.Stopped;
    443         } else {
     443        } else if (refreshableJob.IsPaused()) {
     444          refreshableJob.ExecutionState = Core.ExecutionState.Paused;
     445        } else {
    444446          refreshableJob.ExecutionState = Core.ExecutionState.Started;
    445447        }
Note: See TracChangeset for help on using the changeset viewer.