Skip to content

Commit

Permalink
[hotfix][rocksdb] fix exception message upon failure to create directory
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoK committed Dec 3, 2019
1 parent faf394d commit 95ad441
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ private SnapshotDirectory prepareLocalSnapshotDirectory(long checkpointId) throw

if (!directory.exists() && !directory.mkdirs()) {
throw new IOException("Local state base directory for checkpoint " + checkpointId +
" already exists: " + directory);
" does not exist and could not be created: " + directory);
}

// introduces an extra directory because RocksDB wants a non-existing directory for native checkpoints.
Expand Down

0 comments on commit 95ad441

Please sign in to comment.