diff options
author | 2025-05-12 18:29:14 +0100 | |
---|---|---|
committer | 2025-05-12 18:29:14 +0100 | |
commit | 97ad4e3403bf0d9c3a4a030a377ec6fde31b166e (patch) | |
tree | a31ee376845262d85de502522053ac2265abfb24 /filamento/src/lib.rs | |
parent | f1540591930aff9d9f584e6ce028c2e49cba1be2 (diff) | |
download | luz-97ad4e3403bf0d9c3a4a030a377ec6fde31b166e.tar.gz luz-97ad4e3403bf0d9c3a4a030a377ec6fde31b166e.tar.bz2 luz-97ad4e3403bf0d9c3a4a030a377ec6fde31b166e.zip |
fix(filamento): increase timeoutwasm
Diffstat (limited to '')
-rw-r--r-- | filamento/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filamento/src/lib.rs b/filamento/src/lib.rs index 18ceb9d..8b27441 100644 --- a/filamento/src/lib.rs +++ b/filamento/src/lib.rs @@ -254,7 +254,7 @@ impl<Fs: FileStore + Clone + Send + Sync + 'static> Client<Fs> { let client = Self { sender: command_sender, // TODO: configure timeout - timeout: Duration::from_secs(10), + timeout: Duration::from_secs(20), }; let logic = ClientLogic::new(client.clone(), jid.as_bare(), db, update_send, file_store); |