We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33782e9 commit 4389f35Copy full SHA for 4389f35
tap-agent/src/main.rs
@@ -31,8 +31,8 @@ async fn main() -> Result<()> {
31
let mut signal_sigint = signal(SignalKind::interrupt())?;
32
let mut signal_sigterm = signal(SignalKind::terminate())?;
33
tokio::select! {
34
- _ = signal_sigint.recv() => debug !("Received SIGINT."),
35
- _ = signal_sigterm.recv() => debug !("Received SIGTERM."),
+ _ = signal_sigint.recv() => debug!("Received SIGINT."),
+ _ = signal_sigterm.recv() => debug!("Received SIGTERM."),
36
}
37
38
// If we're here, we've received a signal to exit.
0 commit comments