Fix flaky spring integration test (#12185)

This commit is contained in:
Lauri Tulmin 2024-09-06 21:31:55 +03:00 committed by GitHub
parent 67ba0a3fe6
commit 61326c69eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ public abstract class AbstractComplexPropagationTest {
Payload payload = externalQueue().take();
receiveChannel().send(payload.toMessage());
} catch (InterruptedException e) {
throw new IllegalStateException(e);
Thread.currentThread().interrupt();
}
}
});