ColumnFamilyStore: Propapgate exception cause in sampling wait

Message-Id: <20190311082942.3310-1-calle@scylladb.com>
This commit is contained in:
Calle Wilund 2019-03-11 08:29:41 +00:00 committed by Avi Kivity
parent 5e50090bfd
commit 5f974bc2bb

View File

@ -136,7 +136,7 @@ public class ColumnFamilyStore extends MetricsMBean implements ColumnFamilyStore
}
} catch (InterruptedException | ExecutionException e) {
futureTableSamperResult = null;
throw new RuntimeException("Failed getting table statistics");
throw new RuntimeException("Failed getting table statistics", e);
}
}