Increase sleep duration after creating GitHub issue in Bomr
See gh-30304
This commit is contained in:
parent
8316a96515
commit
038ec07cf2
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
package org.springframework.boot.build.bom.bomr.github;
|
package org.springframework.boot.build.bom.bomr.github;
|
||||||
|
|
||||||
|
import java.time.Duration;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
@ -52,14 +53,10 @@ final class StandardGitHubRepository implements GitHubRepository {
|
|||||||
requestBody.put("labels", labels);
|
requestBody.put("labels", labels);
|
||||||
}
|
}
|
||||||
requestBody.put("body", body);
|
requestBody.put("body", body);
|
||||||
try {
|
|
||||||
Thread.sleep(1000);
|
|
||||||
}
|
|
||||||
catch (InterruptedException ex) {
|
|
||||||
Thread.currentThread().interrupt();
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
ResponseEntity<Map> response = this.rest.postForEntity("issues", requestBody, Map.class);
|
ResponseEntity<Map> response = this.rest.postForEntity("issues", requestBody, Map.class);
|
||||||
|
// See gh-30304
|
||||||
|
sleep(Duration.ofSeconds(3));
|
||||||
return (Integer) response.getBody().get("number");
|
return (Integer) response.getBody().get("number");
|
||||||
}
|
}
|
||||||
catch (RestClientException ex) {
|
catch (RestClientException ex) {
|
||||||
@ -96,4 +93,13 @@ final class StandardGitHubRepository implements GitHubRepository {
|
|||||||
return body.stream().map(mapper).collect(Collectors.toList());
|
return body.stream().map(mapper).collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void sleep(Duration duration) {
|
||||||
|
try {
|
||||||
|
Thread.sleep(duration.toMillis());
|
||||||
|
}
|
||||||
|
catch (InterruptedException ex) {
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user