aquatic http and ws: raise default max peer and connection age

There was a problem with aquatic_http with clients announcing
less often than requested interval and getting purged, making
file transfers less reliable
This commit is contained in:
Joakim Frostegård 2020-08-16 23:24:29 +02:00
parent a9f9b59086
commit 3d35bd9bd4
2 changed files with 4 additions and 4 deletions

View file

@ -165,8 +165,8 @@ impl Default for CleaningConfig {
fn default() -> Self {
Self {
interval: 30,
max_peer_age: 180,
max_connection_age: 180,
max_peer_age: 1800,
max_connection_age: 1800,
}
}
}