Skip to content

Commit

Permalink
🐛 FIX: Health check method
Browse files Browse the repository at this point in the history
  • Loading branch information
caiovfernandes committed Jun 8, 2022
1 parent d5082d3 commit 77aa674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blue_green_assets/release_health_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def main(BLUE_ENV_NAME, boto_authenticated_client):
blue_env_cname = "http://" + blue_env_info["Environments"][0]["CNAME"]

print("blue_env_cname: " + blue_env_cname)
env_http_response = requests.get(blue_env_cname)
env_http_response = requests.get(blue_env_cname, verify=False)
env_reponse_status = env_http_response.status_code

if env_reponse_status == 200 or env_reponse_status == 301:
Expand Down

0 comments on commit 77aa674

Please sign in to comment.