Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing staging to cloudfront-staging #172

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ object CommonSdkTypeObjectCreators {
internal val URI_OBJECT_CREATOR = CustomTypeObjectCreatorImpl(URI::class) { mode ->
listOf(
URI.create("https://api.mapbox.com"),
URI.create("https://api-offline-search-staging.tilestream.net")
URI.create("https://cloudfront-staging.tilestream.net")
)[mode.ordinal]
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ internal class OfflineSearchEngineSettingsTest {
}

private companion object {
val TEST_DEFAULT_ENDPOINT_URI: URI = URI.create("https://api-offline-search-staging.tilestream.net")
val TEST_DEFAULT_ENDPOINT_URI: URI = URI.create("https://cloudfront-staging.tilestream.net")
const val TEST_ACCESS_TOKEN = "test token"
val TEST_MOCKED_LOCATION_ENGINE: LocationEngine = mockk(relaxed = true)
val TEST_MOCKED_TILE_STORE: TileStore = mockk(relaxed = true)
Expand Down