Skip to content

Commit 46271f5

Browse files
committed
Added missing field in ExecutionContext's copy constructor
1 parent 242a151 commit 46271f5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/net/jodah/failsafe/ExecutionContext.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ private ExecutionContext(ExecutionContext context) {
4141
this.startTime = context.startTime;
4242
this.attemptStartTime = context.attemptStartTime;
4343
this.attempts = context.attempts;
44+
this.cancelled = context.cancelled;
4445
this.lastResult = context.lastResult;
4546
this.lastFailure = context.lastFailure;
4647
}

0 commit comments

Comments
 (0)