Skip to content

Commit 09cbfb7

Browse files
authored
Don't worry about an explicit run ID when --local is specified (#109)
1 parent acd4c25 commit 09cbfb7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/abq_cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "abq"
3-
version = "1.9.0"
3+
version = "1.9.1"
44
edition = "2021"
55

66
[dependencies]

crates/abq_cli/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ async fn abq_main() -> anyhow::Result<ExitCode> {
392392
let stdout_preferences = StdoutPreferences::new(color);
393393

394394
let external_run_id = run_id.or(inferred_run_id);
395-
let explicit_run_id_provided = external_run_id.is_some();
395+
let explicit_run_id_provided = external_run_id.is_some() && !local;
396396
let run_id = external_run_id.unwrap_or_else(RunId::unique);
397397

398398
let working_dir =

0 commit comments

Comments
 (0)