Skip to content

Commit 0738f9f

Browse files
committed
Flaky build due to a possible race condition #1449
Signed-off-by: christian.lutnik <[email protected]>
1 parent 95d2271 commit 0738f9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/dev/openfeature/sdk/Awaitable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void await() {
2828
try {
2929
this.wait();
3030
} catch (InterruptedException ignored) {
31-
// ignore
31+
Thread.currentThread().interrupt();
3232
}
3333
}
3434
}

0 commit comments

Comments
 (0)