[OPE-161] PagerDuty import: EU region support#97
Merged
Conversation
Add a Region selector (US / EU) to the PagerDuty import wizard. EU customers were silently failing because the client was hardcoded to the US endpoint; now the handler resolves api.eu.pagerduty.com when region=eu is passed. - pdClientFactory now takes (apiKey, baseURL string) — no longer hardcodes the US base URL - pdBaseURL() helper maps "eu" → EU endpoint, anything else → US - Frontend mirrors the Opsgenie region radio group pattern - Four new tests cover pdBaseURL(), EU preview, and EU import paths
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
api.pagerduty.com; now routes toapi.eu.pagerduty.comwhen EU is selectedChanges
pdClientFactoryupdated to accept(apiKey, baseURL string)— base URL no longer hardcodedpdBaseURL(region string)helper maps"eu"→ EU endpoint, anything else → US (safe default)PagerDutyImportPanelbefore the API key field, matching Opsgenie's UIPDMigrationRequesttype updated with optionalregionfieldTest plan
make validatepasses (Go tests + frontend build)TestPDBaseURL_DefaultsToUS— empty/us region resolves to US endpointTestPDBaseURL_EU— eu region resolves to EU endpointTestPreviewPagerDutyMigration_EURegion— preview handler accepts region=euTestImportPagerDutyMigration_EURegion— import handler accepts region=euCloses OPE-161