From 280ced3dabc02ff964d4b34fda906fff82d60c54 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Mon, 1 Jul 2024 14:32:41 -0700 Subject: [PATCH] whoops --- nexus/src/app/background/driver.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nexus/src/app/background/driver.rs b/nexus/src/app/background/driver.rs index e1a22c61a4..48a9ec7eb1 100644 --- a/nexus/src/app/background/driver.rs +++ b/nexus/src/app/background/driver.rs @@ -291,11 +291,11 @@ impl Activator { impl ActivatorInner { async fn activated(&self) { debug_assert!( - self.0.wired_up.load(Ordering::SeqCst), + self.wired_up.load(Ordering::SeqCst), "nothing should await activation from an activator that hasn't \ been wired up" ); - self.0.notify.notified().await + self.notify.notified().await } }