Changeset 1831
- Timestamp:
- 05/15/09 14:27:08 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Server.Core/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ClientCommunicator.cs
r1811 r1831 311 311 curJob.State = State.requestSnapshotSent; 312 312 } 313 jobAdapter.Update(curJob);314 313 } 314 jobAdapter.Update(curJob); 315 315 } 316 316 foreach (Job currJob in jobsOfClient) { -
trunk/sources/HeuristicLab.Hive.Server.Core/3.2/JobManager.cs
r1811 r1831 265 265 266 266 Job job = jobAdapter.GetById(jobId); 267 if (job.State == State.requestSnapshot ) {267 if (job.State == State.requestSnapshot || job.State == State.requestSnapshotSent) { 268 268 response.Success = true; 269 269 response.StatusMessage = ApplicationConstants.RESPONSE_JOB_REQUEST_ALLREADY_SET;
Note: See TracChangeset
for help on using the changeset viewer.