Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/17/11 18:29:41 (13 years ago)
Author:
cneumuel
Message:

#1233

  • added basic statistics recording for (once per minute)
    • executiontime per user
    • usedcores, usedmemory per slave
File:
1 edited

Legend:

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

    r6219 r6229  
    175175    }
    176176    private void jobResultPoller_IsPollingChanged(object sender, EventArgs e) {
    177       this.refreshAutomatically = jobResultPoller.IsPolling;
    178       OnRefreshAutomaticallyChanged();
     177      if (this.refreshAutomatically != jobResultPoller.IsPolling) {
     178        this.refreshAutomatically = jobResultPoller.IsPolling;
     179        OnRefreshAutomaticallyChanged();
     180      }
    179181    }
    180182    private void jobResultPoller_JobResultReceived(object sender, EventArgs<IEnumerable<LightweightJob>> e) {
Note: See TracChangeset for help on using the changeset viewer.