EpochAccountsHash tests no longer ignore shutdown errors (#31883)

This commit is contained in:
Brooks 2023-05-31 09:11:06 -04:00 committed by GitHub
parent 9220e53e23
commit 2fc1dc1bf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 4 deletions

View File

@ -237,11 +237,16 @@ 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();
_ = unsafe { ManuallyDrop::take(&mut self.accounts_hash_verifier) }.join();
_ = unsafe { ManuallyDrop::take(&mut self.snapshot_packager_service) }.join();
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");
info!("Stopping background services... DONE");
}