resolves valgrind issues about RGWIndexCompletionManager::process()
using uninitialized memory
Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit
112c2608750cf8db2c52c8e89f5897080501f6bd)
std::vector<set<complete_op_data*>> completions;
std::vector<complete_op_data*> retry_completions;
- std::thread retry_thread;
std::condition_variable cond;
std::mutex retry_completions_lock;
-
bool _stop{false};
+ std::thread retry_thread;
std::atomic<int> cur_shard {0};