Skip to content

Commit bac5169

Browse files
author
Michael Tran
committed
Merge branch '160-fix-fueling-url-for-non-prod-environments' into 'master'
Resolve "Fix fueling URL for non-prod environments" Closes #160 See merge request pace/mobile/android/pace-cloud-sdk!151
2 parents e1124c4 + 07f859d commit bac5169

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ x.y.z Release notes (yyyy-MM-dd)
33

44
<!-- ### Breaking Changes - Include, if needed -->
55
<!-- ### Enhancements - Include, if needed -->
6-
<!-- ### Fixes - Include, if needed -->
6+
### Fixes
7+
8+
* Fix Fueling PWA URLs for non-prod environment
9+
710
<!-- ### Internal - Include, if needed -->
811

912
9.2.1 Release notes (2021-09-02)

library/src/main/java/cloud/pace/sdk/utils/Environment.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ enum class Environment(
1717
"https://maps.pacelink.net/osrm5/route/v1/",
1818
"https://pay.dev.pace.cloud",
1919
"https://pay.dev.pace.cloud/transactions",
20-
"https://fueling.dev.pace.cloud"
20+
"https://dev.fuel.site"
2121
),
2222
STAGING(
2323
"https://id.stage.pace.cloud",
@@ -26,7 +26,7 @@ enum class Environment(
2626
"https://maps.pacelink.net/osrm5/route/v1/",
2727
"https://pay.stage.pace.cloud",
2828
"https://pay.stage.pace.cloud/transactions",
29-
"https://fueling.stage.pace.cloud"
29+
"https://stage.fuel.site"
3030
),
3131
PRODUCTION(
3232
"https://id.pace.cloud",
@@ -44,6 +44,6 @@ enum class Environment(
4444
"https://maps.pacelink.net/osrm5/route/v1/",
4545
"https://pay.sandbox.pace.cloud",
4646
"https://pay.sandbox.pace.cloud/transactions",
47-
"https://fueling.sandbox.pace.cloud"
47+
"https://sandbox.fuel.site"
4848
)
4949
}

0 commit comments

Comments
 (0)