Skip to content

Commit

Permalink
- FIX: Fixed issue with multi-query requirement of jOOQ.
Browse files Browse the repository at this point in the history
- CHG: Version bump.
  • Loading branch information
sebastian-raubach committed Jun 28, 2022
1 parent d37fc01 commit df799e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ apply plugin: 'com.bmuschko.cargo-base'
compileJava.options.encoding = 'UTF-8'

group 'uk.ac.hutton.germinate'
version '4.3.1'
version '4.3.2'

sourceCompatibility = 11

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jhi/germinate/server/Database.java
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ private static String getDatabaseUrl(boolean allowStreaming)
+ (StringUtils.isEmptyOrQuotes(databasePort) ? "3306" : databasePort)
+ "/"
+ databaseName
+ "?useUnicode=yes&characterEncoding=UTF-8&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone="
+ "?allowMultiQueries=true&useUnicode=yes&characterEncoding=UTF-8&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone="
+ utc
+ (allowStreaming ? "&useCursorFetch=true" : "");
}
Expand Down

0 comments on commit df799e0

Please sign in to comment.