Skip to content

Commit 6f147e9

Browse files
committed
Change cache values from "true" to "false"
1 parent d3a08b2 commit 6f147e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

correlation/ti/ti.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ func IsBlocklisted() {
119119

120120
}
121121

122-
cache.Add(sourceIp.String(), "true")
122+
cache.Add(sourceIp.String(), "false")
123123
}
124124

125125
if !cache.IsCached(destinationIp.String()) {
@@ -138,7 +138,7 @@ func IsBlocklisted() {
138138
)
139139
}
140140

141-
cache.Add(destinationIp.String(), "true")
141+
cache.Add(destinationIp.String(), "false")
142142
}
143143
}
144144
}()

0 commit comments

Comments
 (0)