Changeset 4173 for branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/ClientCommunicator.cs
- Timestamp:
- 08/06/10 15:31:15 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/ClientCommunicator.cs
r4170 r4173 349 349 response.Success = false; 350 350 response.StatusMessage = ApplicationConstants.RESPONSE_COMMUNICATOR_JOB_IS_NOT_BEEING_CALCULATED; 351 Logger.Error("There is no job calculated by this user " + hbData.ClientId); 351 352 foreach (Guid jobId in hbData.JobProgress.Keys) { 353 response.ActionRequest.Add(new MessageContainer(MessageContainer.MessageType.AbortJob, jobId)); 354 } 355 356 Logger.Error("There is no job calculated by this user " + hbData.ClientId + ", advise him to abort all"); 352 357 return; 353 358 } … … 359 364 response.Success = false; 360 365 response.StatusMessage = ApplicationConstants.RESPONSE_COMMUNICATOR_JOB_IS_NOT_BEEING_CALCULATED; 366 response.ActionRequest.Add(new MessageContainer(MessageContainer.MessageType.AbortJob, curJob.Id)); 361 367 Logger.Error("There is no job calculated by this user " + hbData.ClientId + " Job: " + curJob); 362 368 } else if (curJob.State == State.Abort) { … … 524 530 response.StatusMessage = ApplicationConstants.RESPONSE_COMMUNICATOR_NO_JOB_WITH_THIS_ID; 525 531 response.JobId = jobId; 526 527 532 Logger.Error("No job with Id " + jobId); 528 533
Note: See TracChangeset
for help on using the changeset viewer.