Skip to content

Commit 4f3ebc7

Browse files
authored
Merge pull request #1822 from safing/fix/spn_stickedHub_logical_issue
[fix] SPN - Improve sticky domain handling in getStickiedHub function
2 parents 7373b88 + fe8a560 commit 4f3ebc7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

spn/crew/sticky.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ func getStickiedHub(conn *network.Connection) (sticksTo *stickyHub) {
7171

7272
// If the IP did not stick and we have a domain, check if that sticks.
7373
if sticksTo == nil && conn.Entity.Domain != "" {
74-
sticksTo, ok := stickyDomains[makeStickyDomainKey(conn)]
74+
var ok bool
75+
sticksTo, ok = stickyDomains[makeStickyDomainKey(conn)]
7576
if ok && !sticksTo.isExpired() {
7677
sticksTo.LastSeen = time.Now()
7778
}
@@ -146,6 +147,8 @@ func (t *Tunnel) avoidDestinationHub() {
146147
Avoid: true,
147148
}
148149
log.Warningf("spn/crew: avoiding %s for %s", t.dstPin.Hub, ipKey)
150+
151+
// TODO: Question: Should we avoid the domain as well? (stickyDomains)
149152
}
150153

151154
func cleanStickyHubs(ctx *mgr.WorkerCtx) error {

0 commit comments

Comments
 (0)