upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src/sync/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sync/mod.rs')
-rw-r--r--src/sync/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sync/mod.rs b/src/sync/mod.rs
index 44efbf0..cd62380 100644
--- a/src/sync/mod.rs
+++ b/src/sync/mod.rs
@@ -1512,6 +1512,7 @@ impl SyncManager {
1512 self.service_domain.clone(), 1512 self.service_domain.clone(),
1513 Arc::clone(&self.repo_sync_index), 1513 Arc::clone(&self.repo_sync_index),
1514 action_tx, 1514 action_tx,
1515 self.database.clone(),
1515 ); 1516 );
1516 let subscriber_shutdown = shutdown_tx.subscribe(); 1517 let subscriber_shutdown = shutdown_tx.subscribe();
1517 tokio::spawn(async move { self_subscriber.run(Some(subscriber_shutdown)).await }); 1518 tokio::spawn(async move { self_subscriber.run(Some(subscriber_shutdown)).await });
@@ -2969,6 +2970,7 @@ impl SyncManager {
2969 event_id = %event.id, 2970 event_id = %event.id,
2970 kind = %event.kind.as_u16(), 2971 kind = %event.kind.as_u16(),
2971 identifier = %identifier, 2972 identifier = %identifier,
2973 pubkey = %event.pubkey,
2972 "Added rejected announcement to two-tier index" 2974 "Added rejected announcement to two-tier index"
2973 ); 2975 );
2974 } 2976 }