Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/15/09 20:04:46 (15 years ago)
Author:
gkronber
Message:

worked on #419 (Refactor CEDMA plugins):

  • increased number of sessions for the grid service from 20 to 100
  • implemented results query
  • fixed a bug in the Dispatcher
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CEDMA-Refactoring-Ticket419/HeuristicLab.Grid/ServerForm.cs

    r1130 r1151  
    6666      internalHost = new ServiceHost(jobStore, new Uri(internalAddressTextBox.Text));
    6767      ServiceThrottlingBehavior throttlingBehavior = new ServiceThrottlingBehavior();
    68       throttlingBehavior.MaxConcurrentSessions = 20;
     68      throttlingBehavior.MaxConcurrentSessions = 100;
    6969      internalHost.Description.Behaviors.Add(throttlingBehavior);
    7070      try {
Note: See TracChangeset for help on using the changeset viewer.