Compare commits

...

1 Commits

Author SHA1 Message Date
ad907576dc fix: move log message
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
2024-03-29 11:13:05 +01:00

View File

@ -40,12 +40,13 @@ MAIN:
logger.F("from", from),
)
if matches := wildcard.Match(url.String(), from); !matches {
continue
}
logger.Debug(
ctx, "proxy's from matched",
logger.F("from", from),
)
continue
}
match = p
break MAIN