Skip to content

Commit

Permalink
Merge pull request #109 from OctopusDeploy/bug-Issue2580
Browse files Browse the repository at this point in the history
Decreased Azure deployment retry count to 3 but removed the time limit.
  • Loading branch information
droyad committed Jul 6, 2016
2 parents 3209fc9 + c8b71d8 commit a6cb81f
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -205,8 +205,8 @@ private static void LogDeploymentEvent(DeploymentTraceEventArgs args)

static RetryTracker GetRetryTracker()
{
return new RetryTracker(maxRetries: 5,
timeLimit: TimeSpan.FromMinutes(1),
return new RetryTracker(maxRetries: 3,
timeLimit: TimeSpan.MaxValue,
retryInterval: RetryIntervalForAzureOperations);
}
}
Expand Down

0 comments on commit a6cb81f

Please sign in to comment.