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

fix(predictions): region handling for creating correct streaming endpoint from region #3880

Merged
merged 2 commits into from
Sep 24, 2024
Merged
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 @@ -7,8 +7,20 @@

import Foundation

private let isoPartitionBaseDomain: String = "csp.hci.ic.gov"
private let defaultBaseDomain: String = "amazonaws.com"

func streamingSessionURL(for region: String) throws -> URL {
let urlString = "wss://streaming-rekognition.\(region).amazonaws.com/start-face-liveness-session-websocket"

// Determine the base domain based on the region
let baseDomain: String
if region.lowercased().starts(with: "us-isof") {
baseDomain = isoPartitionBaseDomain
} else {
baseDomain = defaultBaseDomain
}

let urlString = "wss://streaming-rekognition.\(region).\(baseDomain)/start-face-liveness-session-websocket"
guard let url = URL(string: urlString) else {
throw FaceLivenessSessionError.invalidRegion
}
Expand Down
Loading