Skip to content

Commit

Permalink
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion core/src/main/java/org/jruby/Ruby.java
Original file line number Diff line number Diff line change
@@ -1537,7 +1537,11 @@ private void initCore() {
}

// Fiber depends on thread library, so we load it here
new ThreadLibrary().load(this, false);
try {
new ThreadLibrary().load(this, false);
} catch (IOException e) {
throw new RuntimeException(e);
}

new ThreadFiberLibrary().load(this, false);

1 comment on commit 4710b5f

@nirvdrum
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@headius @enebo This is almost certainly the wrong fix, but I just wanted to get master building again. One of you should take a look at this when you get a moment.

Please sign in to comment.