Increase sleep duration after creating GitHub issue in Bomr

See gh-30304
This commit is contained in:
Moritz Halbritter 2023-01-17 10:32:36 +01:00 committed by Andy Wilkinson
parent 8316a96515
commit 038ec07cf2

View File

@ -16,6 +16,7 @@
package org.springframework.boot.build.bom.bomr.github;
import java.time.Duration;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@ -52,14 +53,10 @@ final class StandardGitHubRepository implements GitHubRepository {
requestBody.put("labels", labels);
}
requestBody.put("body", body);
try {
Thread.sleep(1000);
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
}
try {
ResponseEntity<Map> response = this.rest.postForEntity("issues", requestBody, Map.class);
// See gh-30304
sleep(Duration.ofSeconds(3));
return (Integer) response.getBody().get("number");
}
catch (RestClientException ex) {
@ -96,4 +93,13 @@ final class StandardGitHubRepository implements GitHubRepository {
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();
}
}
}