Bug #12896
closedThread.stop is removed in Java 11 but used in jsengine
Description
The long deprecated Thread.stop method is finally removed in the Java 11.
We use it in our JS script engine jail to avoid rogue script looping forever.
We need to change that (and if we find a correct solution, use it in all supported version).
Some ideas: https://stackoverflow.com/a/1601307/436331
Concerned code: https://github.com/Normation/rudder/blob/master/rudder-core/src/main/scala/com/normation/rudder/services/policies/JavascriptEngine.scala#L507
Updated by Vincent MEMBRÉ over 6 years ago
- Target version changed from 4.3.3 to 4.3.4
Updated by François ARMAND over 6 years ago
Updated by François ARMAND over 6 years ago
The open jdk bug: https://bugs.openjdk.java.net/browse/JDK-8204243
Updated by François ARMAND over 6 years ago
I asked on openjdk "discuss" ml: http://mail.openjdk.java.net/pipermail/discuss/2018-July/004794.html
Updated by François ARMAND over 6 years ago
- Status changed from New to Rejected
As pointed out by Alan here: http://mail.openjdk.java.net/pipermail/discuss/2018-July/004795.html it's not the method we use that is removed, but a sister one. So I'm closing that ticket, we will deal with the problem when it arise for real.
Updated by François ARMAND over 6 years ago
For reference, if at one point we need to support a JDK without nashorn, there is that interesting message about graalvm / js and migration from nashorn: http://mail.openjdk.java.net/pipermail/discuss/2018-July/004798.html