diff --git a/RELEASES.md b/RELEASES.md index 44ee47f15519..84c9a77e6e4c 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -5,6 +5,8 @@ - Ensure that the module used by a visualization is preloaded when the visualization is being attached ([#1857](https://github.com/enso-org/enso/pull/1857)). +- Fix an issue with the `HostClassLoader` getting into a broken state + ([#1867](https://github.com/enso-org/enso/pull/1867)). ## Tooling diff --git a/engine/runtime/src/main/scala/org/enso/interpreter/instrument/job/ExecuteJob.scala b/engine/runtime/src/main/scala/org/enso/interpreter/instrument/job/ExecuteJob.scala index 06c4e19c6025..2a016547494b 100644 --- a/engine/runtime/src/main/scala/org/enso/interpreter/instrument/job/ExecuteJob.scala +++ b/engine/runtime/src/main/scala/org/enso/interpreter/instrument/job/ExecuteJob.scala @@ -17,9 +17,9 @@ class ExecuteJob( ) extends Job[Unit]( List(contextId), isCancellable = true, - // TODO[MK]: make this interruptible when https://github.com/oracle/graal/issues/3273 + // TODO[MK]: make this interruptible when https://github.com/oracle/graal/issues/3590 // is resolved - mayInterruptIfRunning = true + mayInterruptIfRunning = false ) { def this(exe: Executable) =