Skip to content

Commit

Permalink
Dont propagate exception in sstableexpiredblockers
Browse files Browse the repository at this point in the history
Patch by marcuse; reviewed by brandonwilliams for CASSANDRA-10240
  • Loading branch information
krummas committed Sep 7, 2015
1 parent 5bc56c3 commit 0bb32f0
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -80,8 +80,7 @@ public static void main(String[] args) throws IOException
}
catch (Throwable t)
{
out.println("Couldn't open sstable: " + sstable.getKey().filenameFor(Component.DATA));
Throwables.propagate(t);
out.println("Couldn't open sstable: " + sstable.getKey().filenameFor(Component.DATA)+" ("+t.getMessage()+")");
}
}
}
Expand Down

0 comments on commit 0bb32f0

Please sign in to comment.