Merge branch '2.3.x' into 2.4.x

See gh-25481
This commit is contained in:
Andy Wilkinson 2021-03-03 17:56:16 +00:00
commit f85c7c9ef1

View File

@ -64,6 +64,12 @@ abstract class AbstractApplicationLauncher implements BeforeEachCallback {
void destroyProcess() {
if (this.process != null) {
this.process.destroy();
try {
this.process.waitFor();
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
}
}
}