|
31 | 31 | import org.openjdk.skara.jbs.*;
|
32 | 32 | import org.openjdk.skara.jcheck.JCheckConfiguration;
|
33 | 33 | import org.openjdk.skara.json.JSON;
|
| 34 | +import org.openjdk.skara.network.UncheckedRestException; |
34 | 35 | import org.openjdk.skara.vcs.*;
|
35 | 36 | import org.openjdk.skara.vcs.openjdk.*;
|
36 | 37 |
|
@@ -305,7 +306,18 @@ public void onNewCommits(HostedRepository repository, Repository localRepository
|
305 | 306 | var existing = Backports.findIssue(issue, fixVersion);
|
306 | 307 | if (existing.isEmpty()) {
|
307 | 308 | log.info("Creating new backport for " + issue.id() + " with fixVersion " + requestedVersion);
|
308 |
| - issue = jbsBackport.createBackport(issue, requestedVersion, username.orElse(null), defaultSecurity(branch)); |
| 309 | + try { |
| 310 | + issue = jbsBackport.createBackport(issue, requestedVersion, username.orElse(null), defaultSecurity(branch)); |
| 311 | + } catch (UncheckedRestException e) { |
| 312 | + existing = Backports.findIssue(issue, fixVersion); |
| 313 | + if (existing.isPresent()) { |
| 314 | + log.info("Race condition occurred while creating backport issue, returning the existing backport for " + issue.id() + " and requested fixVersion " |
| 315 | + + requestedVersion + " " + existing.get().id()); |
| 316 | + issue = existing.get(); |
| 317 | + } else { |
| 318 | + throw e; |
| 319 | + } |
| 320 | + } |
309 | 321 | } else {
|
310 | 322 | log.info("Found existing backport for " + issue.id() + " and requested fixVersion "
|
311 | 323 | + requestedVersion + " " + existing.get().id());
|
|
1 commit comments
openjdk-notifier[bot] commentedon Feb 21, 2023
Review
Issues