Skip to content

Commit f7693f4

Browse files
authored
Nexus publishing: increase timeout during transition checks. (#289)
- 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.
1 parent 46e0c80 commit f7693f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ nexusStaging {
1717
packageGroup = GROUP
1818
username = System.getenv('NEXUS_USERNAME')
1919
password = System.getenv('NEXUS_PASSWORD')
20-
numberOfRetries = 60
20+
numberOfRetries = 180
21+
delayBetweenRetriesInMillis = 3000
2122
}
2223

2324
allprojects {

0 commit comments

Comments
 (0)