Skip to content

Commit

Permalink
Use new Remote Settings STAGE URL (#160)
Browse files Browse the repository at this point in the history
In [Bug 1594573](https://bugzilla.mozilla.org/show_bug.cgi?id=1594573), we fixed some inconsistencies between our prod and stage URLs.

This is the new URL to be used for the STAGE public server.
  • Loading branch information
leplatrem authored Aug 25, 2021
1 parent 570a986 commit 246107a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion containers/crlite-publish-config.properties.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Be sure not to use quotes for strings in this file

# Kinto information. RO and RW can be the same server, but don't have to be.
KINTO_RO_SERVER_URL=https://settings.stage.mozaws.net/v1/
KINTO_RO_SERVER_URL=https://settings-cdn.stage.mozaws.net/v1/
KINTO_RW_SERVER_URL=https://settings-writer.stage.mozaws.net/v1/
KINTO_AUTH_USER=kinto_publisher_example_user
KINTO_AUTH_PASSWORD=kinto_publisher_example_password
Expand Down
2 changes: 1 addition & 1 deletion containers/crlite-signoff-config.properties.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Be sure not to use quotes for strings in this file

# Kinto information. RO and RW can be the same server, but don't have to be.
KINTO_RO_SERVER_URL=https://settings.stage.mozaws.net/v1/
KINTO_RO_SERVER_URL=https://settings-cdn.stage.mozaws.net/v1/
KINTO_RW_SERVER_URL=https://settings-writer.stage.mozaws.net/v1/
KINTO_AUTH_USER=kinto_signer_example_user
KINTO_AUTH_PASSWORD=kinto_signer_example_password
Expand Down
2 changes: 1 addition & 1 deletion containers/scripts/crlite-signoff-tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import tempfile

KINTO_RO_SERVER_URL = config(
"KINTO_RO_SERVER_URL", default="https://settings.stage.mozaws.net/v1/"
"KINTO_RO_SERVER_URL", default="https://settings-cdn.stage.mozaws.net/v1/"
)
KINTO_BUCKET = config("KINTO_BUCKET", default="security-state-preview")
KINTO_CRLITE_COLLECTION = config("KINTO_CRLITE_COLLECTION", default="cert-revocations")
Expand Down
2 changes: 1 addition & 1 deletion moz_kinto_publisher/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"KINTO_RW_SERVER_URL", default="https://settings-writer.stage.mozaws.net/v1/"
)
KINTO_RO_SERVER_URL = config(
"KINTO_RO_SERVER_URL", default="https://settings.stage.mozaws.net/v1/"
"KINTO_RO_SERVER_URL", default="https://settings-cdn.stage.mozaws.net/v1/"
)
KINTO_AUTH_USER = config("KINTO_AUTH_USER", default="")
KINTO_AUTH_PASSWORD = config("KINTO_AUTH_PASSWORD", default="")
Expand Down

0 comments on commit 246107a

Please sign in to comment.