Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/29/08 16:17:10 (16 years ago)
Author:
gkronber
Message:

removed the distinction between controller agents and normal agents. Also removed the AgentScheduler because it is not needed anymore. (ticket #204)

File:
1 edited

Legend:

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

    r393 r398  
    6464    }
    6565    private void ReleaseWaitingRuns() {
    66       IEnumerable<AgentEntry> agents;
     66      ICollection<AgentEntry> agents;
    6767      lock(remoteCommLock) {
    68         agents = database.GetAgents(ProcessStatus.Waiting).Where(a=>!a.ControllerAgent);
     68        agents = database.GetAgents(ProcessStatus.Waiting);
    6969      }
    7070      foreach(AgentEntry entry in agents) {
Note: See TracChangeset for help on using the changeset viewer.