Skip to content

Commit

Permalink
fix(config): set default timeout to 10s (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
folex authored May 3, 2023
1 parent db09cde commit 8030d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/pure/src/pure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ use std::fs;
use std::str::FromStr;

const CONFIG_FILE_PATH: &str = "/tmp/multiaddr_config";
const DEFAULT_TIMEOUT_SEC: u64 = 1u64;
const DEFAULT_TIMEOUT_SEC: u64 = 10u64;
module_manifest!();

pub fn main() {
Expand Down

0 comments on commit 8030d4d

Please sign in to comment.