Merge pull request #60153 from rishabh-d-dave/mgr-vol-cv-waiting

mgr/vol: remove unused variable

Reviewed-by: Jos Collin <jcollin@redhat.com>
This commit is contained in:
Rishabh Dave 2024-10-25 18:40:19 +05:30 committed by GitHub
commit fc40c9196d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -131,8 +131,6 @@ class AsyncJobs(threading.Thread):
# lock, cv for kickstarting jobs
self.lock = threading.Lock()
self.cv = threading.Condition(self.lock)
# cv for job cancelation
self.waiting = False
self.stopping = threading.Event()
self.cancel_cv = threading.Condition(self.lock)
self.nr_concurrent_jobs = nr_concurrent_jobs