Skip to content

Commit

Permalink
make health check endpoint the base url to pass elb validation
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmundy committed Sep 6, 2020
1 parent a718640 commit 8013336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mci/app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def create_app():
api.add_resource(UserRemovePIIResource, '/users/remove-pii',
endpoint='user_remove_pii_ep')
# helper endpoints
api.add_resource(HealthCheckResource, '/health', endpoint='healthcheck_ep')
api.add_resource(HealthCheckResource, '/', endpoint='healthcheck_ep')
api.add_resource(SourceResource, '/source', endpoint='sources_ep')
api.add_resource(GenderResource, '/gender', endpoint='gender_ep')
api.add_resource(AddressResource, '/address', endpoint='address_ep')
Expand Down

0 comments on commit 8013336

Please sign in to comment.