Skip to content

Commit

Permalink
style: fix spaces in macro call
Browse files Browse the repository at this point in the history
Signed-off-by: Alexis Asseman <[email protected]>
  • Loading branch information
aasseman committed Nov 2, 2023
1 parent 6041534 commit da11a93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tap-agent/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ async fn main() -> Result<()> {
let mut signal_sigint = signal(SignalKind::interrupt())?;
let mut signal_sigterm = signal(SignalKind::terminate())?;
tokio::select! {
_ = signal_sigint.recv() => debug !("Received SIGINT."),
_ = signal_sigterm.recv() => debug !("Received SIGTERM."),
_ = signal_sigint.recv() => debug!("Received SIGINT."),
_ = signal_sigterm.recv() => debug!("Received SIGTERM."),
}

// If we're here, we've received a signal to exit.
Expand Down

0 comments on commit da11a93

Please sign in to comment.