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 5d30099
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/abq_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abq"
version = "1.9.0"
version = "1.9.1"
edition = "2021"

[dependencies]
Expand Down
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 5d30099

Please sign in to comment.