Increase the _ZO_MAXAGE default

This commit is contained in:
Stavros Korokithakis 2020-06-08 00:54:28 +03:00 committed by GitHub
parent 922e2e4847
commit 52421bae8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -43,6 +43,6 @@ pub fn zo_maxage() -> Result<Rank> {
})?; })?;
Ok(maxage as Rank) Ok(maxage as Rank)
} }
None => Ok(1000.0), None => Ok(10000.0),
} }
} }