Skip to content
This repository was archived by the owner on Jun 11, 2024. It is now read-only.

Commit ad7500d

Browse files
committed
MitmProxyProcessManager fix
1 parent 63bf8a4 commit ad7500d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

browserup-proxy-core/src/main/java/com/browserup/bup/mitmproxy/MitmProxyProcessManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public void stop() {
122122

123123
if (startedProcess != null) {
124124
Process process = startedProcess.getProcess();
125-
process.destroyForcibly();
125+
process.destroy();
126126
Awaitility.await().atMost(10, TimeUnit.SECONDS).until(() -> !process.isAlive());
127127
}
128128
}

0 commit comments

Comments
 (0)