Skip to content

Commit

Permalink
fix to pass CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kanarus committed Aug 23, 2024
1 parent c273825 commit e2c708e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ohkami/src/ohkami/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ impl Ohkami {
let ctrl_c = tokio::signal::ctrl_c();

let (ctrl_c_tx, ctrl_c_rx) = tokio::sync::watch::channel(());
__rt__::task::spawn(async {
__rt__::spawn(async {
ctrl_c.await.expect("Something was wrong around Ctrl-C");
drop(ctrl_c_rx);
});
Expand Down

0 comments on commit e2c708e

Please sign in to comment.