Skip to content
Snippets Groups Projects
Commit 69e74805 authored by ethiraj krishnamanaidu's avatar ethiraj krishnamanaidu
Browse files

Merge branch 'trusted-aws' into 'master'

fix check isHealthCheckUrl

See merge request !20
parents 3a5fc782 ebffcfe5
No related branches found
No related tags found
2 merge requests!29Pull latest changes from master,!20fix check isHealthCheckUrl
Pipeline #2321 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) {
......
......@@ -11,6 +11,7 @@ REGION=${AWS_REGION}
AUTHORIZE_API=notused
LEGAL_HOSTNAME=notused
CRON_JOB_IP=10.0.0.1
ACCEPT_HTTP=true
## AWS DynamoDB configuration
aws.dynamodb.key=id
......
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