Skip to content

Commit 4dc2d82

Browse files
AllegroFoxfreshstrangemusic
authored andcommitted
Bug 1965487 - Update Experimenter Stage URL
1 parent fd76a6d commit 4dc2d82

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
- return Result in PrimaryPasswordAuthenticator callbacks (again a breaking change, but not yet used by anyone)
88
- add factory for login store with nss key manager: `create_login_store_with_nss_keymanager` to avoid round-tripping the KeyManager trait interface through JS.
99

10+
### Nimbus
11+
- Updated the Nimbus API Stage URL
12+
1013
# v141.0 (_2025-06-23_)
1114

1215
## ✨ What's New ✨

components/support/nimbus-cli/src/config.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,8 +305,9 @@ pub(crate) fn api_v6_production_server() -> String {
305305
}
306306

307307
pub(crate) fn api_v6_stage_server() -> String {
308-
std::env::var("NIMBUS_API_URL_STAGE")
309-
.unwrap_or_else(|_| "https://stage.experimenter.nonprod.dataops.mozgcp.net".to_string())
308+
std::env::var("NIMBUS_API_URL_STAGE").unwrap_or_else(|_| {
309+
"https://stage.experimenter.nonprod.webservices.mozgcp.net/api/v6".to_string()
310+
})
310311
}
311312

312313
pub(crate) fn manifest_cache_dir() -> Option<PathBuf> {

0 commit comments

Comments
 (0)