default history size to 100k (#1845)

This commit is contained in:
James Campos
2020-05-19 12:28:06 -07:00
committed by GitHub
parent ed80933806
commit ae8c864934
2 changed files with 2 additions and 2 deletions

View File

@ -572,7 +572,7 @@ pub async fn cli(
let max_history_size = config::config(Tag::unknown())?
.get("history_size")
.map(|i| i.value.expect_int())
.unwrap_or(100);
.unwrap_or(100_000);
rl.set_max_history_size(max_history_size as usize);