Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions p2p/kademlia/dht.go
Original file line number Diff line number Diff line change
Expand Up @@ -430,8 +430,12 @@ func (s *DHT) Start(ctx context.Context) error {

go s.StartReplicationWorker(ctx)
go s.startDisabledKeysCleanupWorker(ctx)
go s.startCleanupRedundantDataWorker(ctx)
go s.startDeleteDataWorker(ctx)
// TEMPORARY: disabled to pause redundant-key classification into del_keys.
// Re-enable once deletion-safety behavior is finalized.
// go s.startCleanupRedundantDataWorker(ctx)
// TEMPORARY: disabled to prevent processing existing del_keys backlog.
// Re-enable together with redundant-data classification once safe.
// go s.startDeleteDataWorker(ctx)
go s.startStoreSymbolsWorker(ctx)

return nil
Expand Down