mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Merge branch '4.1.x'
Closes gh-51573
This commit is contained in:
+1
-1
@@ -84,7 +84,7 @@ class ProcessRunnerTests {
|
||||
runner.join(Duration.ofSeconds(5).toMillis());
|
||||
assertThat(runner.isAlive()).isFalse();
|
||||
assertThat(error.get()).isInstanceOf(IllegalStateException.class);
|
||||
assertThat(ProcessHandle.of(pid).map(ProcessHandle::isAlive).orElse(false)).isFalse();
|
||||
Awaitility.await().until(() -> !ProcessHandle.of(pid).map(ProcessHandle::isAlive).orElse(false));
|
||||
}
|
||||
|
||||
@Nested
|
||||
|
||||
Reference in New Issue
Block a user