Increase reconnect delay to one minute

This commit is contained in:
Joscha 2022-11-09 19:48:26 +01:00
parent bf2732eccd
commit 31129ece39
2 changed files with 2 additions and 1 deletions

View file

@ -15,6 +15,7 @@ Procedure when bumping the version number:
## Unreleased
### Changed
- Increase reconnect delay to one minute
- Print errors that occurred while cove was running more compactly
## v0.5.0 - 2022-09-26

View file

@ -21,7 +21,7 @@ use crate::macros::ok_or_return;
use crate::vault::{EuphRoomVault, EuphVault};
const TIMEOUT: Duration = Duration::from_secs(30);
const RECONNECT_INTERVAL: Duration = Duration::from_secs(5);
const RECONNECT_INTERVAL: Duration = Duration::from_secs(60);
const LOG_INTERVAL: Duration = Duration::from_secs(10);
#[derive(Debug, thiserror::Error)]