Skip to content

Commit

Permalink
Correct the exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
jduo committed Jan 11, 2024
1 parent bdd2097 commit e3ef767
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ private DirectReservationListener() {
} catch (Exception e) {
final RuntimeException failure = new RuntimeException(
"Failed to initialize DirectReservationListener. When starting Java you must include " +
"`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED` " +
"`--add-opens=java.base/java.nio=org.apache.arrow.dataset,org.apache.arrow.memory.core,ALL-UNNAMED` " +
"(See https://arrow.apache.org/docs/java/install.html)", e);
failure.printStackTrace();
throw failure;
Expand Down

0 comments on commit e3ef767

Please sign in to comment.