Skip to content

Commit

Permalink
Fix #10488.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Oct 24, 2019
1 parent 867ac34 commit 4c77491
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -152,9 +152,9 @@ public synchronized Path create(final Session<?> session, final String region, f
if(log.isDebugEnabled()) {
log.debug(String.format("Create vault root directory at %s", secondLevel));
}
directory.mkdir(dataDir, region, new TransferStatus());
directory.mkdir(firstLevel, region, new TransferStatus());
directory.mkdir(secondLevel, region, new TransferStatus());
directory.mkdir(dataDir, region, status);
directory.mkdir(firstLevel, region, status);
directory.mkdir(secondLevel, region, status);
return vault;
}

Expand Down

0 comments on commit 4c77491

Please sign in to comment.