Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/19/09 16:08:48 (15 years ago)
Author:
gkronber
Message:

Fixed a bug which prevented that more than 10 jobs are dispatched concurrently. #642

File:
1 edited

Legend:

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

    r2058 r2075  
    5959      get { return maxActiveJobs; }
    6060      set {
    61         if (value > 0 && value <= 64) {
     61        if (value > 0) {
    6262          maxActiveJobs = value;
     63          if (executer != null) {
     64            executer.MaxActiveJobs = value;
     65          }
    6366        }
    6467      }
     
    115118      }
    116119      executer = new GridExecuter(dispatcher, store, gridServer);
     120      executer.MaxActiveJobs = MaxActiveJobs;
    117121      executer.Start();
    118122    }
Note: See TracChangeset for help on using the changeset viewer.