Skip to content
This repository has been archived by the owner on Oct 5, 2022. It is now read-only.

Commit

Permalink
fix default read timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrand committed May 18, 2019
1 parent ba02228 commit 1823ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/options.rs
Expand Up @@ -58,7 +58,7 @@ pub fn node_deletion_timeout<'a, 'b>() -> clap::Arg<'a, 'b> {
pub fn read_timeout<'a, 'b>() -> clap::Arg<'a, 'b> {
clap::Arg::with_name("read-timeout")
.long("read-timeout")
.default_value("10")
.default_value("1")
.help("Read timeout as secs.")
.takes_value(true)
}
Expand Down

0 comments on commit 1823ee9

Please sign in to comment.