ColumnFamilyStore: Propapgate exception cause in sampling wait

Message-Id: <20190311082942.3310-1-calle@scylladb.com>
(cherry picked from commit 5f974bc2bb)
This commit is contained in:
Calle Wilund 2019-03-11 08:29:41 +00:00 committed by Avi Kivity
parent d8a8651de9
commit 76b30ba915

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);
}
}