- Timestamp:
- 06/07/11 00:43:59 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4
- Files:
-
- 1 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4/HiveEngine.cs
r6358 r6373 288 288 random.Reset(random.Next()); 289 289 } 290 ExperimentManagerClient.StartExperiment((e) => {290 HiveClient.StartExperiment((e) => { 291 291 LogException(e); 292 292 }, refreshableHiveExperiment); … … 354 354 355 355 private void DeleteHiveExperiment(Guid hiveExperimentId) { 356 ExperimentManagerClient.TryAndRepeat(() => {356 HiveClient.TryAndRepeat(() => { 357 357 ServiceLocator.Instance.CallHiveService(s => s.DeleteHiveExperiment(hiveExperimentId)); 358 358 }, 5, string.Format("Could not delete jobs")); -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4/Tests/Program.cs
r6358 r6373 42 42 #region Credentials 43 43 ServiceLocator.Instance.Username = "cneumuel"; 44 ServiceLocator.Instance.Password = " Stormlord105.";44 ServiceLocator.Instance.Password = ""; 45 45 #endregion 46 46
Note: See TracChangeset
for help on using the changeset viewer.