Skip to content

Commit

Permalink
fix: fixed wrong option override configuration that caused panic
Browse files Browse the repository at this point in the history
  • Loading branch information
pamburus committed Feb 25, 2024
1 parent a397f14 commit edcb74e
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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ categories = ["command-line-utilities"]
description = "Utility for viewing json-formatted log files."
keywords = ["cli", "human", "log"]
name = "hl"
version = "0.25.3-alpha.3"
version = "0.25.3-alpha.4"
edition = "2021"
build = "build.rs"

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ struct Opt {
tail: u64,

/// Synchronization interval for live streaming mode enabled by --follow option.
#[arg(long, default_value = "100", overrides_with = "sync-interval-ms")]
#[arg(long, default_value = "100", overrides_with = "sync_interval_ms")]
sync_interval_ms: u64,

/// Output file.
Expand Down

0 comments on commit edcb74e

Please sign in to comment.