Skip to content

Commit 5527ce6

Browse files
authored
Merge pull request #59 from spetrunia/rocksdb-cloud-fix-GetThreadList
Implement CloudEnvImpl::GetThreadList which redirects the call base_env_
2 parents 40e5e3f + 8f70867 commit 5527ce6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cloud/cloud_env_impl.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ class CloudEnvImpl : public CloudEnv {
9393
void TEST_InitEmptyCloudManifest();
9494
void TEST_DisableCloudManifest() { test_disable_cloud_manifest_ = true; }
9595

96+
Status GetThreadList(std::vector<ThreadStatus>* thread_list) override {
97+
return base_env_->GetThreadList(thread_list);
98+
}
99+
96100
protected:
97101
// The type of cloud service e.g. AWS, Azure, Google, etc.
98102
const CloudType cloud_type_;

0 commit comments

Comments
 (0)