Changeset 4120 for branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3
- Timestamp:
- 07/29/10 16:58:35 (14 years ago)
- Location:
- branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Facades/ExecutionEngineFacade.cs
r4092 r4120 70 70 } 71 71 72 public ResponseObject<JobDto> GetJobById(Guid jobId) { 73 using (contextFactory.GetContext()) { 74 return jobManager.GetJobById(jobId); 75 } 76 } 72 77 #endregion 73 78 } -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/JobManager.cs
r4119 r4120 58 58 } 59 59 60 61 60 private void CheckForDeadJobs() { 62 61 Logger.Info("Searching for dead Jobs"); … … 231 230 } 232 231 232 // [chn] [refactor] why does this method handle 3 different cases? wouldn't 3 methods be easier? 233 233 //Requested means: there MUST be a job result which gets sent back 234 234 public ResponseObject<SerializedJob> GetLastSerializedJobResultOf(Guid jobId, bool requested, bool snapshot) { 235 ResponseObject<SerializedJob> response = 236 new ResponseObject<SerializedJob>(); 235 ResponseObject<SerializedJob> response = new ResponseObject<SerializedJob>(); 237 236 238 237 JobDto job = DaoLocator.JobDao.FindById(jobId); -
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Properties/AssemblyInfo.cs
r4119 r4120 55 55 // by using the '*' as shown below: 56 56 // [assembly: AssemblyVersion("1.0.*")] 57 [assembly: AssemblyVersion("3.3.0.411 6")]58 [assembly: AssemblyFileVersion("3.3.0.411 6")]59 [assembly: AssemblyBuildDate("2010/07/2 8 17:42:06")]57 [assembly: AssemblyVersion("3.3.0.4119")] 58 [assembly: AssemblyFileVersion("3.3.0.4119")] 59 [assembly: AssemblyBuildDate("2010/07/29 16:49:08")]
Note: See TracChangeset
for help on using the changeset viewer.