Skip to content

Commit

Permalink
whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw committed Jul 1, 2024
1 parent 5edd8db commit 280ced3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nexus/src/app/background/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

Expand Down

0 comments on commit 280ced3

Please sign in to comment.