Changeset 9347
- Timestamp:
- 04/09/13 16:39:36 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.Clients.Hive.Slave/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.Hive.Slave/3.3/Core.cs
r8964 r9347 75 75 //start the client communication service (pipe between slave and slave gui) 76 76 slaveComm = new ServiceHost(typeof(SlaveCommunicationService)); 77 slaveComm.Open(); 77 78 try { 79 slaveComm.Open(); 80 } 81 catch (AddressAlreadyInUseException ex) { 82 if (ServiceEventLog != null) { 83 EventLogManager.LogException(ex); 84 } 85 } 78 86 79 87 // delete all left over task directories -
trunk/sources/HeuristicLab.Clients.Hive.Slave/3.3/Manager/HeartbeatManager.cs
r7259 r9347 70 70 waitHandle.Set(); 71 71 heartBeatThread.Join(); 72 waitHandle.Close(); 72 73 } 73 74 … … 129 130 waitHandle.WaitOne(this.interval); 130 131 } 131 waitHandle.Close();132 132 SlaveClientCom.Instance.LogMessage("Heartbeat thread stopped"); 133 133 }
Note: See TracChangeset
for help on using the changeset viewer.