This commit is contained in:
crn4
2025-10-30 23:27:54 +01:00
parent d7e028b2b3
commit 199804d64f

View File

@@ -3,6 +3,7 @@ package types
import ( import (
"context" "context"
"fmt" "fmt"
"runtime"
"slices" "slices"
"strconv" "strconv"
"strings" "strings"
@@ -1057,6 +1058,7 @@ func (b *NetworkMapBuilder) OnPeerAddedIncremental(peerID string) error {
log.Debugf("NetworkMapBuilder: Added peer %s to cache", peerID) log.Debugf("NetworkMapBuilder: Added peer %s to cache", peerID)
runtime.GC()
return nil return nil
} }