Skip to content

Commit

Permalink
correct URL for route2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Reynolds committed Apr 30, 2024
1 parent 96f3e1a commit 6c0033c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions labapp/app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ def route2():
if not ns:
raise LabException("Ephemeral NS not set")
base_url = app.config['base_url']
aws_url = f"https://{ns}.{base_url}/aws/raw"
azure_url = f"https://{ns}.{base_url}/azure/raw"
aws_url = f"https://{ns}.{base_url}/raw"
azure_url = f"https://{ns}.{base_url}/raw"
aws_data = cloudapp_fetch(aws_url, 5, 'request_env', 'AWS', headers={"X-MCN-lab": "aws"})
azure_data = cloudapp_fetch(azure_url, 5, 'request_env', 'Azure', headers={"X-MCN-lab": "azure"})
data = {
Expand Down

0 comments on commit 6c0033c

Please sign in to comment.