This repository was archived by the owner on Feb 3, 2025. It is now read-only.
File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -159,6 +159,7 @@ impl<S: MutinyStorage> HermesClient<S> {
159
159
let current_address_check_clone = self . current_address . clone ( ) ;
160
160
let first_federation = self . get_first_federation ( ) . await . clone ( ) ;
161
161
utils:: spawn ( async move {
162
+ let mut count = 1 ;
162
163
loop {
163
164
if stop_check_clone. load ( Ordering :: Relaxed ) {
164
165
break ;
@@ -263,7 +264,10 @@ impl<S: MutinyStorage> HermesClient<S> {
263
264
}
264
265
} ;
265
266
266
- utils:: sleep ( 1_000 ) . await ;
267
+ // exponential backoff
268
+ let sleep_time = std:: cmp:: min ( 1_000 * ( 2_i32 . pow ( count) ) , 60_000 ) ;
269
+ utils:: sleep ( sleep_time) . await ;
270
+ count += 1 ;
267
271
}
268
272
} ) ;
269
273
Original file line number Diff line number Diff line change @@ -1482,12 +1482,16 @@ impl<S: MutinyStorage> MutinyWallet<S> {
1482
1482
let self_clone = self . clone ( ) ;
1483
1483
utils:: spawn ( async move {
1484
1484
// keep trying until it succeeds
1485
+ let mut count = 1 ;
1485
1486
loop {
1486
1487
match self_clone. sync_nostr ( ) . await {
1487
1488
Ok ( _) => break ,
1488
1489
Err ( e) => {
1489
1490
log_error ! ( self_clone. logger, "Failed to sync nostr: {e}" ) ;
1490
- sleep ( 5_000 ) . await ;
1491
+
1492
+ // exponential backoff
1493
+ let sleep_time = std:: cmp:: min ( 1_000 * ( 2_i32 . pow ( count) ) , 60_000 ) ;
1494
+ sleep ( sleep_time) . await ;
1491
1495
}
1492
1496
}
1493
1497
You can’t perform that action at this time.
0 commit comments