Skip to content

Commit

Permalink
Fix flaky spring integration test (#12185)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit authored Sep 6, 2024
1 parent 67ba0a3 commit 61326c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ void initialize() {
Payload payload = externalQueue().take();
receiveChannel().send(payload.toMessage());
} catch (InterruptedException e) {
throw new IllegalStateException(e);
Thread.currentThread().interrupt();
}
}
});
Expand Down

0 comments on commit 61326c6

Please sign in to comment.