- Timestamp:
- 07/12/08 11:50:43 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Collections/sources/HeuristicLab.Grid/JobManager.cs
r379 r384 189 189 } 190 190 return; 191 } catch(TimeoutException timeoutException) {192 retries++; 193 Thread.Sleep(TimeSpan.FromSeconds(RETRY_TIMEOUT_SEC)); 194 } catch(CommunicationException communicationException) {191 } catch(TimeoutException) { 192 retries++; 193 Thread.Sleep(TimeSpan.FromSeconds(RETRY_TIMEOUT_SEC)); 194 } catch(CommunicationException) { 195 195 ResetConnection(); 196 196 retries++; … … 208 208 return zippedResult; 209 209 } 210 } catch(TimeoutException timeoutException) {211 retries++; 212 Thread.Sleep(TimeSpan.FromSeconds(RETRY_TIMEOUT_SEC)); 213 } catch(CommunicationException communicationException) {210 } catch(TimeoutException) { 211 retries++; 212 Thread.Sleep(TimeSpan.FromSeconds(RETRY_TIMEOUT_SEC)); 213 } catch(CommunicationException) { 214 214 ResetConnection(); 215 215 retries++; … … 229 229 return jobState; 230 230 } 231 } catch(TimeoutException timeoutException) {232 retries++; 233 Thread.Sleep(TimeSpan.FromSeconds(RETRY_TIMEOUT_SEC)); 234 } catch(CommunicationException communicationException) {231 } catch(TimeoutException) { 232 retries++; 233 Thread.Sleep(TimeSpan.FromSeconds(RETRY_TIMEOUT_SEC)); 234 } catch(CommunicationException) { 235 235 ResetConnection(); 236 236 retries++;
Note: See TracChangeset
for help on using the changeset viewer.