We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7373b88 + fe8a560 commit 4f3ebc7Copy full SHA for 4f3ebc7
spn/crew/sticky.go
@@ -71,7 +71,8 @@ func getStickiedHub(conn *network.Connection) (sticksTo *stickyHub) {
71
72
// If the IP did not stick and we have a domain, check if that sticks.
73
if sticksTo == nil && conn.Entity.Domain != "" {
74
- sticksTo, ok := stickyDomains[makeStickyDomainKey(conn)]
+ var ok bool
75
+ sticksTo, ok = stickyDomains[makeStickyDomainKey(conn)]
76
if ok && !sticksTo.isExpired() {
77
sticksTo.LastSeen = time.Now()
78
}
@@ -146,6 +147,8 @@ func (t *Tunnel) avoidDestinationHub() {
146
147
Avoid: true,
148
149
log.Warningf("spn/crew: avoiding %s for %s", t.dstPin.Hub, ipKey)
150
+
151
+ // TODO: Question: Should we avoid the domain as well? (stickyDomains)
152
153
154
func cleanStickyHubs(ctx *mgr.WorkerCtx) error {
0 commit comments