Skip to content

Commit cabf007

Browse files
committed
Increase delay/retries in Maven deployers
1 parent f59ff8d commit cabf007

File tree

2 files changed

+40
-40
lines changed

2 files changed

+40
-40
lines changed

docs/modules/reference/pages/deploy/maven/maven-central.adoc

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ include::partial$deploy/maven/yaml/common-head.adoc[]
4141
deploymentId: dd9991b0-18a7-41e7-b1fe-37b8ea936f85
4242
4343
# Time to wait between state transition checks, in seconds.
44-
# Defaults to `10`.
44+
# Defaults to `20`.
4545
# icon:dot-circle[]
46-
retryDelay: 10
46+
retryDelay: 20
4747
4848
# Maximum number of attempts to verify state transition.
49-
# Defaults to `60`.
49+
# Defaults to `100`.
5050
# icon:dot-circle[]
51-
maxRetries: 60
51+
maxRetries: 100
5252
----
5353
--
5454
TOML::
@@ -74,14 +74,14 @@ include::partial$deploy/maven/toml/common-head.adoc[]
7474
deploymentId = "dd9991b0-18a7-41e7-b1fe-37b8ea936f85"
7575
7676
# Time to wait between state transition checks, in seconds.
77-
# Defaults to `10`.
77+
# Defaults to `20`.
7878
# icon:dot-circle[]
79-
retryDelay = 10
79+
retryDelay = 20
8080
8181
# Maximum number of attempts to verify state transition.
82-
# Defaults to `60`.
82+
# Defaults to `100`.
8383
# icon:dot-circle[]
84-
maxRetries = 60
84+
maxRetries = 100
8585
----
8686
--
8787
JSON::
@@ -107,14 +107,14 @@ include::partial$deploy/maven/json/common-head.adoc[]
107107
"deploymentId": "dd9991b0-18a7-41e7-b1fe-37b8ea936f85",
108108
109109
// Time to wait between state transition checks, in seconds.
110-
// Defaults to `10`.
110+
// Defaults to `20`.
111111
// icon:dot-circle[]
112-
"retryDelay": 10,
112+
"retryDelay": 20,
113113
114114
// Maximum number of attempts to verify state transition.
115-
// Defaults to `60`.
115+
// Defaults to `100`.
116116
// icon:dot-circle[]
117-
"maxRetries": 60,
117+
"maxRetries": 100,
118118
include::partial$deploy/maven/json/common-footer.adoc[]
119119
----
120120
--
@@ -148,17 +148,17 @@ include::partial$deploy/maven/maven/common-head.adoc[]
148148
149149
<!--
150150
Time to wait between state transition checks, in seconds.
151-
Defaults to `10`.
151+
Defaults to `20`.
152152
icon:dot-circle[]
153153
-->
154-
<retryDelay>10</retryDelay>
154+
<retryDelay>20</retryDelay>
155155
156156
<!--
157157
Maximum number of attempts to verify state transition.
158-
Defaults to `60`.
158+
Defaults to `100`.
159159
icon:dot-circle[]
160160
-->
161-
<maxRetries>60</maxRetries>
161+
<maxRetries>100</maxRetries>
162162
include::partial$deploy/maven/maven/common-footer.adoc[]
163163
----
164164
--
@@ -185,14 +185,14 @@ include::partial$deploy/maven/gradle/common-head.adoc[]
185185
deploymentId = 'dd9991b0-18a7-41e7-b1fe-37b8ea936f85'
186186
187187
// Time to wait between state transition checks, in seconds.
188-
// Defaults to `10`.
188+
// Defaults to `20`.
189189
// icon:dot-circle[]
190-
retryDelay = 10
190+
retryDelay = 20
191191
192192
// Maximum number of attempts to verify state transition.
193-
// Defaults to `60`.
193+
// Defaults to `100`.
194194
// icon:dot-circle[]
195-
maxRetries = 60
195+
maxRetries = 100
196196
include::partial$deploy/maven/gradle/common-footer.adoc[]
197197
----
198198
--

docs/modules/reference/pages/deploy/maven/nexus2.adoc

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ include::partial$deploy/maven/yaml/common-head.adoc[]
4949
releaseRepository: true
5050
5151
# Time to wait between state transition checks, in seconds.
52-
# Defaults to `10`.
52+
# Defaults to `20`.
5353
# icon:dot-circle[]
54-
transitionDelay: 10
54+
transitionDelay: 20
5555
5656
# Maximum number of attempts to verify state transition.
57-
# Defaults to `60`.
57+
# Defaults to `100`.
5858
# icon:dot-circle[]
59-
transitionMaxRetries: 60
59+
transitionMaxRetries: 100
6060
6161
# Staging profile identifier, useful for faster lookups.
6262
# icon:dot-circle[]
@@ -105,14 +105,14 @@ include::partial$deploy/maven/toml/common-head.adoc[]
105105
releaseRepository = true
106106
107107
# Time to wait between state transition checks, in seconds.
108-
# Defaults to `10`.
108+
# Defaults to `20`.
109109
# icon:dot-circle[]
110-
transitionDelay = 10
110+
transitionDelay = 20
111111
112112
# Maximum number of attempts to verify state transition.
113-
# Defaults to `60`.
113+
# Defaults to `100`.
114114
# icon:dot-circle[]
115-
transitionMaxRetries = 60
115+
transitionMaxRetries = 100
116116
117117
# Staging profile identifier, useful for faster lookups.
118118
# icon:dot-circle[]
@@ -161,14 +161,14 @@ include::partial$deploy/maven/json/common-head.adoc[]
161161
"releaseRepository": true,
162162
163163
// Time to wait between state transition checks, in seconds.
164-
// Defaults to `10`.
164+
// Defaults to `20`.
165165
// icon:dot-circle[]
166-
"transitionDelay": 10,
166+
"transitionDelay": 20,
167167
168168
// Maximum number of attempts to verify state transition.
169-
// Defaults to `60`.
169+
// Defaults to `100`.
170170
// icon:dot-circle[]
171-
"transitionMaxRetries": 60,
171+
"transitionMaxRetries": 100,
172172
173173
// Staging profile identifier, useful for faster lookups.
174174
// icon:dot-circle[]
@@ -227,17 +227,17 @@ include::partial$deploy/maven/maven/common-head.adoc[]
227227
228228
<!--
229229
Time to wait between state transition checks, in seconds.
230-
Defaults to `10`.
230+
Defaults to `20`.
231231
icon:dot-circle[]
232232
-->
233-
<transitionDelay>10</transitionDelay>
233+
<transitionDelay>20</transitionDelay>
234234
235235
<!--
236236
Maximum number of attempts to verify state transition.
237-
Defaults to `60`.
237+
Defaults to `100`.
238238
icon:dot-circle[]
239239
-->
240-
<transitionMaxRetries>60</transitionMaxRetries>
240+
<transitionMaxRetries>100</transitionMaxRetries>
241241
242242
<!--
243243
Staging profile identifier, useful for faster lookups.
@@ -295,14 +295,14 @@ include::partial$deploy/maven/gradle/common-head.adoc[]
295295
releaseRepository = true
296296
297297
// Time to wait between state transition checks, in seconds.
298-
// Defaults to `10`.
298+
// Defaults to `20`.
299299
// icon:dot-circle[]
300-
transitionDelay = 10
300+
transitionDelay = 20
301301
302302
// Maximum number of attempts to verify state transition.
303-
// Defaults to `60`.
303+
// Defaults to `100`.
304304
// icon:dot-circle[]
305-
transitionMaxRetries = 60
305+
transitionMaxRetries = 100
306306
307307
// Staging profile identifier, useful for faster lookups.
308308
// icon:dot-circle[]

0 commit comments

Comments
 (0)