Skip to content

Commit

Permalink
Nexus publishing: increase timeout during transition checks. (#289)
Browse files Browse the repository at this point in the history
- Increase number of attempts from 60 to 180
- Increase delay between attempts from 2 to 3 seconds

This increases the total timeout from 2 to 9 minutes.
  • Loading branch information
diegov authored Dec 15, 2021
1 parent 46e0c80 commit f7693f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ nexusStaging {
packageGroup = GROUP
username = System.getenv('NEXUS_USERNAME')
password = System.getenv('NEXUS_PASSWORD')
numberOfRetries = 60
numberOfRetries = 180
delayBetweenRetriesInMillis = 3000
}

allprojects {
Expand Down

0 comments on commit f7693f4

Please sign in to comment.