Skip to content

Commit

Permalink
Fix db platform caching
Browse files Browse the repository at this point in the history
  • Loading branch information
dmgaldi committed Jul 23, 2024
1 parent 5d946e0 commit 23abd47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

// Project settings
group = "org.veupathdb.eda"
version = "4.16.6"
version = "4.16.7"

plugins {
`java-library`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class EntityFactory {
private final boolean _orderEntities;

// Cache the DB platform, it is set at startup and will never change.
private PlatformUtils.DBPlatform _dbPlatform = null;
private static PlatformUtils.DBPlatform _dbPlatform = null;

public EntityFactory(DataSource dataSource, String appDbSchema, boolean orderEntities) {
_dataSource = dataSource;
Expand Down

0 comments on commit 23abd47

Please sign in to comment.