Skip to content
Snippets Groups Projects
Commit 5cf0d6f6 authored by Wyatt Nielsen's avatar Wyatt Nielsen
Browse files

Fix bad copy that introduced failing gcp tests

parent cb94cd14
No related branches found
No related tags found
2 merge requests!20fix check isHealthCheckUrl,!19Fix bad copy that introduced failing gcp tests
Pipeline #2299 passed
......@@ -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