-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* rewrote get_config function to match jupyter server extension * added additional print statements * added more print statements * printing all environment variables * reverted to the correct function and added back environment to settings.py * added more print statements * changed the backup environments.json filepath * now reading from environments.json in MAAP API * updated import for environments.json * corrected to json.load * removed print statements * added error handling * purposely added error * corrected mistake * changed to FileNotFoundError to be more descriptive to pass test
- Loading branch information
1 parent
dcdd1d8
commit a261684
Showing
3 changed files
with
43 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[ | ||
{ | ||
"environment": "dit", | ||
"ade_server": "ade.dit.maap-project.org", | ||
"api_server": "api.dit.maap-project.org", | ||
"auth_server": "auth.dit.maap-project.org", | ||
"mas_server": "repo.dit.maap-project.org", | ||
"edsc_server": "ade.dit.maap-project.org:30052", | ||
"workspace_bucket": "maap-dit-workspace", | ||
"kibana_url": "https://35.88.169.231/metrics/goto/4f1115df1b6563782292fb1f75676f95", | ||
"default_host": true | ||
}, | ||
{ | ||
"environment": "uat", | ||
"ade_server": "ade.uat.maap-project.org", | ||
"api_server": "api.uat.maap-project.org", | ||
"auth_server": "auth.uat.maap-project.org", | ||
"mas_server": "repo.uat.maap-project.org", | ||
"edsc_server": "ade.uat.maap-project.org:30052", | ||
"workspace_bucket": "maap-uat-workspace", | ||
"default_host": false | ||
}, | ||
{ | ||
"environment": "ops", | ||
"ade_server": "ade.maap-project.org", | ||
"api_server": "api.maap-project.org", | ||
"auth_server": "auth.maap-project.org", | ||
"mas_server": "mas.maap-project.org", | ||
"edsc_server": "ade.maap-project.org:30052", | ||
"workspace_bucket": "maap-ops-workspace", | ||
"default_host": false | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters