Skip to content
Snippets Groups Projects
Commit 67af87ba authored by Brandt Beal's avatar Brandt Beal
Browse files

Merge branch 'bug/legal-filter' into 'trusted-aws'

Fix bad copy that introduced failing gcp tests

See merge request !19
parents cb94cd14 5cf0d6f6
No related branches found
No related tags found
2 merge requests!20fix check isHealthCheckUrl,!19Fix bad copy that introduced failing gcp tests
Pipeline #2301 failed
......@@ -96,7 +96,7 @@ public class LegalFilter implements Filter {
}
private boolean isHealthCheck(String uri) {
return (!uri.endsWith("/liveness_check") || !uri.endsWith("/readiness_check"));
return (uri.endsWith("/liveness_check") || uri.endsWith("/readiness_check"));
}
private boolean isCronJob(String uri) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment