File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
crates/nostr-relay-pool/src/relay Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 69
69
* ndb: return ` None ` in ` NostrEventsDatabase::event_by_id ` if event doesn't exist ([ Yuki Kishimoto] )
70
70
* ndb: avoid event clone when calling ` NostrEventsDatabase::save_event ` ([ Yuki Kishimoto] )
71
71
* pool: better handling of auto-closing subscription activity when fetching events ([ Yuki Kishimoto] )
72
+ * pool: reduce ` WAIT_FOR_OK_TIMEOUT ` to 10 secs ([ Yuki Kishimoto] )
72
73
* sdk: auto-update the gossip data when sending an event ([ Yuki Kishimoto] )
73
74
* sdk: avoid full clone of relays when only urls are needed ([ Yuki Kishimoto] )
74
75
* nwc: allow usage of multiple relays ([ Yuki Kishimoto] )
Original file line number Diff line number Diff line change 7
7
use core:: ops:: RangeInclusive ;
8
8
use core:: time:: Duration ;
9
9
10
- pub ( super ) const WAIT_FOR_OK_TIMEOUT : Duration = Duration :: from_secs ( 15 ) ;
10
+ pub ( super ) const WAIT_FOR_OK_TIMEOUT : Duration = Duration :: from_secs ( 10 ) ;
11
11
pub ( super ) const WAIT_FOR_AUTHENTICATION_TIMEOUT : Duration = Duration :: from_secs ( 7 ) ;
12
12
pub ( super ) const DEFAULT_CONNECTION_TIMEOUT : Duration = Duration :: from_secs ( 60 ) ;
13
13
You can’t perform that action at this time.
0 commit comments