Increasing time out for mono

This commit is contained in:
Suhas Joshi 2015-02-04 12:00:15 -08:00
parent 8617bdc223
commit 1165ba363e
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ namespace E2ETests
if (exception.InnerException is HttpRequestException || exception.InnerException is WebException)
{
logger.WriteWarning("Failed to complete the request.", exception);
var waitTimeInMilliSeconds = (RunningOnMono ? 6 : 1) * 1000;
var waitTimeInMilliSeconds = (RunningOnMono ? 7 : 1) * 1000;
Thread.Sleep(waitTimeInMilliSeconds); //Wait for a second before retry
}
}