Reduce juniper_graphql_ws default KA to 15 seconds so that GQL clients don't disconnect (#756)

This commit is contained in:
Jerel Unruh 2020-09-10 17:02:18 -05:00 committed by GitHub
parent dac4e648c1
commit 0bf5e3cfa9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,7 +63,7 @@ impl<CtxT> ConnectionConfig<CtxT> {
Self {
context,
max_in_flight_operations: 0,
keep_alive_interval: Duration::from_secs(30),
keep_alive_interval: Duration::from_secs(15),
}
}