Skip to content

Commit

Permalink
Merge pull request #410 from rstamgh/allow-abort-topic-without-abort-…
Browse files Browse the repository at this point in the history
…manual-enabled

Fix bug in abort build configuration
  • Loading branch information
rsandell authored Feb 7, 2020
2 parents 66feef4 + ee26bf4 commit b614e75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2303,7 +2303,7 @@ public void scheduled(ChangeBasedEvent event) {
&& buildCurrentPatchesOnly.isAbortManualPatchsets()
|| !(runningChangeBasedEvent instanceof ManualPatchsetCreated));

if (!shouldCancelManual) {
if (!abortBecauseOfTopic && !shouldCancelManual) {
continue;
}

Expand Down

0 comments on commit b614e75

Please sign in to comment.