Changeset 1630
- Timestamp:
- 04/23/09 16:25:05 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ClientCommunicator.cs
r1596 r1630 305 305 } 306 306 } 307 foreach (Job currJob in jobsOfClient) { 308 bool found = false; 309 foreach (Guid jobId in hbData.JobProgress.Keys) { 310 if (jobId == currJob.Id) { 311 found = true; 312 break; 313 } 314 } 315 if (!found) { 316 currJob.State = State.offline; 317 jobAdapter.Update(currJob); 318 } 319 } 307 320 } 308 321 }
Note: See TracChangeset
for help on using the changeset viewer.