Skip to content

Commit

Permalink
Don't worry about an explicit run ID when --local is specified
Browse files Browse the repository at this point in the history
  • Loading branch information
TAGraves committed Nov 20, 2024
1 parent 585f436 commit 2cd2f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/abq_cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ async fn abq_main() -> anyhow::Result<ExitCode> {
let stdout_preferences = StdoutPreferences::new(color);

let external_run_id = run_id.or(inferred_run_id);
let explicit_run_id_provided = external_run_id.is_some();
let explicit_run_id_provided = external_run_id.is_some() && !local;
let run_id = external_run_id.unwrap_or_else(RunId::unique);

let working_dir =
Expand Down

0 comments on commit 2cd2f95

Please sign in to comment.