Skip to content

Commit

Permalink
Merge pull request #157 from vitrivr/fix/stack-trace
Browse files Browse the repository at this point in the history
Fix stack trace with JVM argument
  • Loading branch information
ppanopticon authored Feb 9, 2024
2 parents e5d4cdc + 3cc8cc4 commit ca9ad89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cottontaildb-dbms/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies {
application {
applicationName = 'cottontaildb'
mainClassName = 'org.vitrivr.cottontail.CottontailKt'
applicationDefaultJvmArgs = ["-Xms2G", "-Xmx4G"]
applicationDefaultJvmArgs = ['--add-opens', 'java.base/sun.nio.ch=ALL-UNNAMED', "-Xms2G", "-Xmx4G"]
}

/* Publication of Cottontail DB to Maven Central. */
Expand Down

0 comments on commit ca9ad89

Please sign in to comment.