Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/12/11 15:48:53 (13 years ago)
Author:
ascheibe
Message:

#1233 fixed a bug where the slave didn't report the cpu utilization correctly

File:
1 edited

Legend:

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

    r6893 r6910  
    241241        if (task == null) throw new TaskNotFoundException(taskId);
    242242        if (ConfigManager.Instance.GetFreeCores() < task.CoresNeeded) throw new OutOfCoresException();
    243         if (ConfigManager.GetFreeMemory() < task.MemoryNeeded) throw new OutOfMemoryException();
     243        if (ConfigManager.Instance.GetFreeMemory() < task.MemoryNeeded) throw new OutOfMemoryException();
    244244        SlaveStatusInfo.IncrementUsedCores(task.CoresNeeded); usedCores = task.CoresNeeded;
    245245        TaskData taskData = wcfService.GetTaskData(taskId);
Note: See TracChangeset for help on using the changeset viewer.