Changeset 4368 for branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/SlaveCommunicator.cs
- Timestamp:
- 09/07/10 10:22:27 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/SlaveCommunicator.cs
r4333 r4368 39 39 using System.ServiceModel; 40 40 using System.Security; 41 using HeuristicLab.Hive.JobBase; 41 42 42 43 namespace HeuristicLab.Hive.Server.Core { … … 465 466 //tx = session.BeginTransaction(); 466 467 467 ResponseResultReceived response = ProcessJobResult(result.SlaveId, result. JobId, new byte[] { }, result.Percentage, result.Exception, finished);468 ResponseResultReceived response = ProcessJobResult(result.SlaveId, result.Id, new byte[] { }, result.Percentage, result.Exception, finished); 468 469 469 470 if (response.StatusMessage == ResponseStatus.Ok) { … … 487 488 //jobStream.Close(); 488 489 489 DaoLocator.JobDao.SetBinaryJobFile(result. JobId, serializedJob.ToArray());490 DaoLocator.JobDao.SetBinaryJobFile(result.Id, serializedJob.ToArray()); 490 491 } 491 492 Logger.Info("END Job received for Storage:"); … … 721 722 return currCachedPlugin; 722 723 } 723 724 724 725 #endregion 725 726 }
Note: See TracChangeset
for help on using the changeset viewer.