Skip to content

Commit a80b1d2

Browse files
vijayk22oraclezhaosongzs
authored andcommittedFeb 21, 2023
1035: Race when creating backports for bug spanning multiple repos
Reviewed-by: zsong, erikj
1 parent e1eb7e7 commit a80b1d2

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed
 

‎bots/notify/src/main/java/org/openjdk/skara/bots/notify/issue/IssueNotifier.java

+13-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
import org.openjdk.skara.jbs.*;
3232
import org.openjdk.skara.jcheck.JCheckConfiguration;
3333
import org.openjdk.skara.json.JSON;
34+
import org.openjdk.skara.network.UncheckedRestException;
3435
import org.openjdk.skara.vcs.*;
3536
import org.openjdk.skara.vcs.openjdk.*;
3637

@@ -305,7 +306,18 @@ public void onNewCommits(HostedRepository repository, Repository localRepository
305306
var existing = Backports.findIssue(issue, fixVersion);
306307
if (existing.isEmpty()) {
307308
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+
}
309321
} else {
310322
log.info("Found existing backport for " + issue.id() + " and requested fixVersion "
311323
+ requestedVersion + " " + existing.get().id());

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Feb 21, 2023

@openjdk-notifier[bot]
Please sign in to comment.