Skip to content

Commit

Permalink
Post rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed Apr 19, 2024
1 parent 0a67186 commit fd3c6d1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions crates/turborepo-lib/src/run/watch.rs
Expand Up @@ -75,12 +75,14 @@ impl WatchClient {
execution_args: execution_args.clone(),
});

let mut persistent_tasks_handle: Option<JoinHandle<_>> = None;
let mut run = RunBuilder::new(new_base)?
.build(&handler, telemetry.clone())
.await?;

let (sender, handle) = run.start_experimental_ui();
let (sender, handle) = run

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / JS Native Package Tests (ubuntu, self-hosted, linux, x64, metal)

unused variable: `handle`

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / JS Native Package Tests (macos, macos-latest)

unused variable: `handle`

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Build Turborepo (ubuntu, self-hosted, linux, x64, metal)

unused variable: `handle`

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Build Turborepo (macos, macos-latest)

unused variable: `handle`

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Build Turborepo (windows, windows-latest)

unused variable: `handle`

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Turborepo rust check

unused variable: `handle`

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Turborepo rust clippy

unused variable: `handle`

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Turborepo Rust testing on ubuntu

unused variable: `handle`

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Turborepo Rust testing on macos

unused variable: `handle`

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Turborepo Rust testing on windows

unused variable: `handle`

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Turborepo Integration (ubuntu-latest)

unused variable: `handle`

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Turborepo Integration (macos-latest)

unused variable: `handle`

Check warning on line 82 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Turborepo Integration (windows-latest)

unused variable: `handle`
.has_experimental_ui()
.then(|| run.start_experimental_ui())
.unzip();

run.print_run_prelude();

Expand Down Expand Up @@ -108,7 +110,6 @@ impl WatchClient {
&telemetry,
&handler,
&mut persistent_tasks_handle,
&mut main_run_handle,
sender.clone(),
)
.await?;
Expand Down

0 comments on commit fd3c6d1

Please sign in to comment.