Skip to content

Commit 1e7de67

Browse files
committed
Hardcode region to "non-existing-region" for testing
1 parent 08ad0b3 commit 1e7de67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/api/src/controllers/stream.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ async function resolvePullRegion(
264264

265265
// Extracts region from redirected node URL, e.g. "sto" from "https://sto-prod-catalyst-0.lp-playback.studio:443/hls/video+foo/index.m3u8"
266266
export function extractRegionFrom(playbackUrl: string): string {
267-
return "fra-staging";
267+
return "non-existing-region";
268268
const regionRegex =
269269
/https?:\/\/(.+)-\w+-catalyst.+not-used-playback\/index.m3u8/;
270270
const matches = playbackUrl.match(regionRegex);

0 commit comments

Comments
 (0)