We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6cf03cb + 62df26a commit 90ef0ccCopy full SHA for 90ef0cc
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/PythonContext.java
@@ -1218,9 +1218,12 @@ protected void perform(ThreadLocalAction.Access access) {
1218
}
1219
if (isOurThread) {
1220
if (thread.isAlive()) {
1221
- LOGGER.warning("could not join thread " + thread.getName());
+ LOGGER.warning("could not join thread " + thread.getName() + ". Trying to stop it.");
1222
1223
thread.stop();
1224
+ if (thread.isAlive()) {
1225
+ LOGGER.warning("Could not stop thread " + thread.getName());
1226
+ }
1227
1228
1229
0 commit comments