Skip to content

Commit

Permalink
fix(c-s): windows (#1862)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaro00 authored Aug 23, 2024
1 parent 5385da7 commit 553cb9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cargo-shuttle/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2053,7 +2053,7 @@ impl Shuttle {
let mut signal_received = false;
for (i, service) in services.iter().enumerate() {
signal_received = tokio::select! {
res = Shuttle::spin_local_runtime(self.beta, &run_args, service, i as u16) => {
res = Shuttle::spin_local_runtime(&run_args, service, i as u16) => {
Shuttle::add_runtime_info(res.unwrap(), &mut runtimes).await?;
false
},
Expand Down

0 comments on commit 553cb9c

Please sign in to comment.