This commit is contained in:
Andrea Cavalli 2022-11-23 15:34:45 +01:00
parent 36b76d81ed
commit 204d8fa990
1 changed files with 1 additions and 1 deletions

View File

@ -718,7 +718,7 @@ public class LLLocalKeyValueDatabase extends Backuppable implements LLKeyValueDa
opts.setMoveFiles(true);
db.ingestExternalFile(columnHandle, List.of(sst.toString()), opts);
} catch (RocksDBException ex) {
return new IOException("Failed to ingest SST file " + sst, ex);
throw new IOException("Failed to ingest SST file " + sst, ex);
}
return null;
})).then();