Skip to content

Commit 8486c72

Browse files
committed
finished testing
1 parent 70448e5 commit 8486c72

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

internals/proxy/middlewares/endpoints.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,10 @@ func isBlocked(endpoint string, allowed []string, blocked []string) bool {
4747
}
4848

4949
isExplicitlyBlocked := slices.ContainsFunc(blocked, func(try string) bool {
50-
log.Dev("Checking " + try + " against " + endpoint)
5150
return strings.HasPrefix(endpoint, try)
5251
})
5352

5453
isExplictlyAllowed := slices.ContainsFunc(allowed, func(try string) bool {
55-
log.Dev("Checking " + try + " against " + endpoint)
5654
return strings.HasPrefix(endpoint, try)
5755
})
5856

0 commit comments

Comments
 (0)