Skip to content

Commit

Permalink
Fix broken backup path on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
davidegrohmann committed May 19, 2016
1 parent 9bebf35 commit e5244d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void makeSureBackupCanBePerformedFromAnyInstance() throws Throwable
{
// Run backup
DbRepresentation beforeChange = DbRepresentation.of(createSomeData( cluster ));
File backupPathPerCoreMachine = new File(backupPath, db.id().toString());
File backupPathPerCoreMachine = new File( backupPath, "" + db.id().hashCode() );
String[] args = backupArguments(backupAddress(db), backupPathPerCoreMachine.getPath() );
assertEquals( 0, runBackupToolFromOtherJvmToGetExitCode( args ) );

Expand Down

0 comments on commit e5244d8

Please sign in to comment.