Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
inboxsphere committed Nov 26, 2024
1 parent 4e828a9 commit 2af7a39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/flow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ where
loop {
let shutdown = clone.shutdown.read().await;
if *shutdown {
tracing::info!("Received SIGINT (Ctrl+C), Stop to fetch pending tasks.");
tracing::info!("Stop to fetch pending tasks.");
Self::send_poison(processors.clone()).await;
break;
}
Expand Down
2 changes: 1 addition & 1 deletion src/core/periodic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ impl PeriodicTask {
match signal::ctrl_c().await {
Ok(()) => {
info!(
"Received SIGINT (Ctrl+C), shutting down periodic task '{}'...",
"Shutting down periodic task '{}'...",
&self.name
);
// Notify the task to shut down.
Expand Down

0 comments on commit 2af7a39

Please sign in to comment.