-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add OT support emails secret for OT creation (#4287)
* Implement retry logic for OT creation * remove sorting of contact list * Separate CreateTrial and SetupTrial requests * Add OT support emails secret for OT creation
- Loading branch information
1 parent
fc488c9
commit 419c936
Showing
3 changed files
with
27 additions
and
2 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
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 |
---|---|---|
|
@@ -86,6 +86,8 @@ def get_flask_template_path() -> str: | |
OT_URL = 'https://origintrials-staging.corp.google.com/origintrials/' | ||
OT_API_URL = 'https://staging-chromeorigintrials-pa.sandbox.googleapis.com' | ||
OT_API_KEY: str|None = None # Value is set later when request is needed. | ||
# Dummy data for local OT support emails. | ||
DEV_MODE_OT_SUPPORT_EMAILS = '[email protected],[email protected]' | ||
|
||
if UNIT_TEST_MODE: | ||
APP_TITLE = 'Local testing' | ||
|