Skip to content

Commit

Permalink
they should both be failing
Browse files Browse the repository at this point in the history
  • Loading branch information
kreynoldsf5 committed May 2, 2024
1 parent b24305f commit 1f40f1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions labapp/app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,9 +340,9 @@ def manip3():
raise LabException("Ephemeral NS not set")
base_url = app.config['base_url']
aws_url = f"https://{ns}.{base_url}/aws"
azure_url = f"https://{ns}.{base_url}/aws"
aws_headers = {"x-mcn-dest-site": "student-awsnet"}
azure_headers = {"x-mcn-dest-site": "student-azurenet"}
azure_url = f"https://{ns}.{base_url}/azure"
aws_headers = { "x-mcn-dest-site": "student-awsnet" }
azure_headers = { "x-mcn-dest-site": "student-azurenet" }
aws_data = cloudapp_res_headers(s, aws_url, 7, aws_headers)
azure_data = cloudapp_res_headers(s, azure_url, 7, azure_headers)
data = {
Expand Down
2 changes: 1 addition & 1 deletion labapp/app/markdown/manipulation.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ Host: eph-ns.mcn-lab.f5demos.com
</div>
<div id="result3" class="mt-3"></div>
<script>
document.getElementById('requestBtn2').addEventListener('click', () => {
document.getElementById('requestBtn3').addEventListener('click', () => {
makeHttpRequest('requestBtn3', '/_manip3', 'result3');
});
</script>
Expand Down

0 comments on commit 1f40f1d

Please sign in to comment.