Skip to content

Commit 678962c

Browse files
fix: use correct regional ingest domain for ORG_INGEST_DOMAIN (#10845)
* fix: use correct regional ingest domain for ORG_INGEST_DOMAIN * [getsentry/action-github-commit] Auto commit --------- Co-authored-by: getsantry[bot] <66042841+getsantry[bot]@users.noreply.github.com>
1 parent 3f6ecfc commit 678962c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/codeContext.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,8 @@ export async function fetchCodeKeywords(): Promise<CodeKeywords> {
214214
PROJECT_SLUG: project.projectSlug,
215215
ORG_ID: project.organizationId,
216216
ORG_SLUG: project.organizationSlug,
217-
ORG_INGEST_DOMAIN: `o${project.organizationId}.ingest.sentry.io`,
217+
ORG_INGEST_DOMAIN:
218+
parsedDsn.host ?? `o${project.organizationId}.ingest.sentry.io`,
218219
MINIDUMP_URL: formatMinidumpURL(parsedDsn),
219220
UNREAL_URL: formatUnrealEngineURL(parsedDsn),
220221
title: `${project.organizationSlug} / ${project.projectSlug}`,

0 commit comments

Comments
 (0)