Skip to content

Commit

Permalink
Fix wrong cdn endpoint in bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Dec 30, 2023
1 parent a0a41a7 commit 041dd17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **Matchmaker** Logs not shipping if lobby exits immediately
- **Matchmaker** Returning `lnd-atl` instead of `dev-lcl` as the mocked mocked region ID in the region list
- **API** 520 error when long polling
- **api-cloud** Returning wrong domain for `domains.cdn`

## [23.2.0-rc.1] - 2023-12-01

Expand Down
2 changes: 1 addition & 1 deletion svc/api/cloud/src/route/bootstrap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub async fn build_bootstrap_data() -> GlobalResult<models::CloudBootstrapRespon
cluster: models::CloudBootstrapCluster::Oss,
domains: if let (Some(main), Some(cdn), Some(job)) = (
util::env::domain_main(),
util::env::domain_job(),
util::env::domain_cdn(),
util::env::domain_job(),
) {
Some(Box::new(models::CloudBootstrapDomains {
Expand Down

0 comments on commit 041dd17

Please sign in to comment.