Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
gurinderu committed Nov 27, 2023
1 parent ce0469d commit eddc830
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions aquamarine/src/plumber.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,11 @@ impl<RT: AquaRuntime, F: ParticleFunctionStatic> Plumber<RT, F> {
}

if !self.key_manager.is_worker_active(worker_id)
&& !self.key_manager.is_management(particle.init_peer_id)
&& !self
.key_manager
.is_management(particle.particle.init_peer_id)
{
tracing::trace!(target: "worker_inactive", particle_id = particle.id, worker_id = worker_id.to_string(), "Worker is not active");
tracing::trace!(target: "worker_inactive", particle_id = particle.particle.id, worker_id = worker_id.to_string(), "Worker is not active");
return;
}

Expand Down

0 comments on commit eddc830

Please sign in to comment.