mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-28 20:27:03 +00:00
storage_service: Stub get_exception_count
Needed by API.
This commit is contained in:
@@ -1532,4 +1532,9 @@ future<> storage_service::rebuild(sstring source_dc) {
|
||||
return make_ready_future<>();
|
||||
}
|
||||
|
||||
int32_t storage_service::get_exception_count() {
|
||||
//return (int)StorageMetrics.exceptions.count();
|
||||
return 0;
|
||||
}
|
||||
|
||||
} // namespace service
|
||||
|
||||
@@ -2789,12 +2789,9 @@ public:
|
||||
SSTableLoader loader = new SSTableLoader(dir, client, new OutputHandler.LogOutput());
|
||||
return loader.stream();
|
||||
}
|
||||
|
||||
public int getExceptionCount()
|
||||
{
|
||||
return (int)StorageMetrics.exceptions.count();
|
||||
}
|
||||
|
||||
#endif
|
||||
int32_t get_exception_count();
|
||||
#if 0
|
||||
public void rescheduleFailedDeletions()
|
||||
{
|
||||
SSTableDeletingTask.rescheduleFailedTasks();
|
||||
|
||||
Reference in New Issue
Block a user