Skip to content

Commit 4d510fc

Browse files
Merge pull request redhat-appstudio#797 from stuartwdouglas/increase-network-backoff
Increase network backoff
2 parents cbee7eb + 70d6572 commit 4d510fc

File tree

1 file changed

+1
-1
lines changed
  • java-components/cache/src/main/java/com/redhat/hacbs/artifactcache/services/client/maven

1 file changed

+1
-1
lines changed

java-components/cache/src/main/java/com/redhat/hacbs/artifactcache/services/client/maven/MavenClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public Optional<ArtifactResult> getArtifactFile(String group, String artifact, S
6868

6969
private Optional<ArtifactResult> downloadMavenFile(String group, String artifact, String version, String target,
7070
String targetUri) {
71-
long backoff = 200;
71+
long backoff = 10000;
7272
IOException networkException = null;
7373
int retryCount = 0;
7474
String sha1 = null;

0 commit comments

Comments
 (0)