Skip to content

Commit

Permalink
Add a bunch of POST calls in initializePersistence.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkraljevic committed Feb 5, 2015
1 parent 02cbd06 commit ed052c5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/main/java/water/H2O.java
Original file line number Diff line number Diff line change
Expand Up @@ -1385,13 +1385,22 @@ public static List<FlatFileEntry> parseFlatFile( InputStream is ) {
}

static void initializePersistence() {
Log.POST(3001);
HdfsLoader.loadJars();
Log.POST(3002);
if( OPT_ARGS.aws_credentials != null ) {
try {
Log.POST(3003);
PersistS3.getClient();
} catch( IllegalArgumentException e ) { Log.err(e); }
Log.POST(3004);
} catch( IllegalArgumentException e ) {
Log.POST(3005);
Log.err(e);
}
}
Log.POST(3006);
Persist.initialize();
Log.POST(3007);
}

static void initializeLicenseManager() {
Expand Down

0 comments on commit ed052c5

Please sign in to comment.