Skip to content

Commit 33a0c6f

Browse files
authored
Merge pull request #503 from jglick/WorkflowRun.doStop
Remove synchronization from `WorkflowRun.doStop`
2 parents 5b18def + 603fcea commit 33a0c6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jenkinsci/plugins/workflow/job/WorkflowRun.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,7 @@ public boolean shouldCalculateCulprits() {
884884
}
885885

886886
@RequirePOST
887-
public synchronized HttpResponse doStop() {
887+
public HttpResponse doStop() {
888888
Executor e = getOneOffExecutor();
889889
if (e != null) {
890890
return e.doStop();

0 commit comments

Comments
 (0)