Skip to content

Commit

Permalink
Merge pull request #19 from FIAP-3SOAT-G15/fix-ssl
Browse files Browse the repository at this point in the history
fix path
  • Loading branch information
mateus3009 authored Mar 19, 2024
2 parents 2cfa9f8 + 7adcf6a commit b5e034f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sign-up/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def lambda_handler(event, context):
}

headers = {"Content-Type": "application/json"}
url = f"http://{LOAD_BALANCER_DNS}:{TARGET_PORT}/live/customers"
url = f"http://{LOAD_BALANCER_DNS}:{TARGET_PORT}/customers"
response = requests.post(url, json=payload, headers=headers).json()
print(response)
customer_id = response["id"]
Expand Down

0 comments on commit b5e034f

Please sign in to comment.