Skip to content

Commit

Permalink
Test fix for an obscure(?) DB cluster issue
Browse files Browse the repository at this point in the history
  • Loading branch information
MrWisski committed Jan 8, 2016
1 parent fc18080 commit 5875d31
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/main/java/net/kaikk/mc/uuidprovider/DataStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ class DataStore {
this.instance.getLogger().severe("Unable to connect to database. Check your config file settings. Details: \n"+e.getMessage());
throw e;
}

/**
*This block seems to wreck the database cluster.
*Please ensure that this database table exists :(
*
try {
Statement statement = db.createStatement();
Expand All @@ -51,7 +54,7 @@ class DataStore {
throw e;
}

**/
try {
this.dbCheck();

Expand Down

0 comments on commit 5875d31

Please sign in to comment.