Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/java/com/scylladb/tools/BulkLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -1523,7 +1523,7 @@ public static SSTableReader openFile(Pair<Descriptor, Set<Component>> p, CFMetaD
// number of keys for each endpoint. See CASSANDRA-5555 for
// details.
return openForBatch(p.left, p.right, cfm);
} catch (IOException e) {
} catch (Exception e) {
logger.warn("Skipping file {}, error opening it: {}", p.left.baseFilename(), e.getMessage());
}
return null;
Expand Down