This reverts commit 2fc1dc1bf6
.
This commit is contained in:
parent
ddbc35fcc3
commit
8596e00549
|
@ -237,16 +237,11 @@ impl Drop for BackgroundServices {
|
|||
info!("Stopping background services...");
|
||||
self.exit.store(true, Ordering::Relaxed);
|
||||
|
||||
// Join the background threads, and ignore any errors.
|
||||
// SAFETY: We do not use any of the `ManuallyDrop` fields again, so `.take()` is OK here.
|
||||
unsafe { ManuallyDrop::take(&mut self.accounts_background_service) }
|
||||
.join()
|
||||
.expect("stop AccountsBackgroundService");
|
||||
unsafe { ManuallyDrop::take(&mut self.accounts_hash_verifier) }
|
||||
.join()
|
||||
.expect("stop AccountsHashVerifier");
|
||||
unsafe { ManuallyDrop::take(&mut self.snapshot_packager_service) }
|
||||
.join()
|
||||
.expect("stop SnapshotPackagerService");
|
||||
_ = unsafe { ManuallyDrop::take(&mut self.accounts_background_service) }.join();
|
||||
_ = unsafe { ManuallyDrop::take(&mut self.accounts_hash_verifier) }.join();
|
||||
_ = unsafe { ManuallyDrop::take(&mut self.snapshot_packager_service) }.join();
|
||||
|
||||
info!("Stopping background services... DONE");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue