Skip to content

Commit

Permalink
[release: nightlyDisable interrupts to protect HostClassLoader (#1867)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamrecursion authored Jul 15, 2021
1 parent 1a9af9f commit bbf1091
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) =
Expand Down

0 comments on commit bbf1091

Please sign in to comment.