Fix regression where era_restore wouldn't work with devices.

check_file_exists() had an extra parameter added with a default, which was
the wrong default for era_restore.
This commit is contained in:
Joe Thornber 2021-02-17 15:15:57 +00:00
parent 763b2d14b2
commit 58cd881340
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ namespace {
bool metadata_touched = false;
try {
block_manager::ptr bm = open_bm(*fs.output, block_manager::READ_WRITE);
file_utils::check_file_exists(*fs.output);
file_utils::check_file_exists(*fs.output, false);
metadata_touched = true;
metadata::ptr md(new metadata(bm, metadata::CREATE));
emitter::ptr restorer = create_restore_emitter(*md);