Free cookie consent management tool by TermsFeed Policy Generator

Changeset 2128


Ignore:
Timestamp:
07/02/09 10:10:10 (15 years ago)
Author:
gkronber
Message:

Fixed a bug #681

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/3.3/GridExecuter.cs

    r2125 r2128  
    114114        // wait until any job is finished
    115115    private int WaitAny(WaitHandle[] wh, TimeSpan WaitForFinishedJobsTimeout) {
    116       if (wh.Length > 64) {
     116      if (wh.Length <= 64) {
    117117        return WaitHandle.WaitAny(wh, WaitForFinishedJobsTimeout);
    118118      } else {
Note: See TracChangeset for help on using the changeset viewer.