Skip to content

Commit

Permalink
[test] don't log VMDisconnectedException while stopping
Browse files Browse the repository at this point in the history
  • Loading branch information
EcljpseB0T authored and jukzi committed Oct 9, 2024
1 parent 36c501b commit 7f180bc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ protected void readerLoop() {
return;
}
} catch (VMDisconnectedException e) {
e.printStackTrace();
if (!fIsStopping) {
e.printStackTrace();
}
return;
}
}
Expand Down

0 comments on commit 7f180bc

Please sign in to comment.