Skip to content

Commit

Permalink
met_binary: fix broken cmdline flag config
Browse files Browse the repository at this point in the history
  • Loading branch information
intarga committed Nov 15, 2024
1 parent fb6c779 commit d814755
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions met_binary/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ struct Args {
address: String,
#[arg(short = 'l', long, default_value_t = Level::INFO)]
max_trace_level: Level,
#[arg(short, long, default_value_t = String::from("sample_pipeline/fresh"))]
#[arg(short, long, default_value_t = String::from("sample_pipelines/fresh"))]
pipeline_dir: String,
#[arg(short = 'u', long, default_value_t = String::from(""))]
#[arg(long, default_value_t = String::from(""))]
frost_username: String,
#[arg(short = 'u', long, default_value_t = String::from(""))]
#[arg(long, default_value_t = String::from(""))]
frost_password: String,
}

Expand Down

0 comments on commit d814755

Please sign in to comment.