Skip to content

Commit 84eedef

Browse files
#RI-4913 - fix regions for rs preview
1 parent 8d98c9d commit 84eedef

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

redisinsight/api/config/features-config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": 2.3202,
2+
"version": 2.3204,
33
"features": {
44
"insightsRecommendations": {
55
"flag": true,
@@ -47,7 +47,7 @@
4747
},
4848
{
4949
"provider": "GCP",
50-
"regions": ["asia-northeast-1", "europe-west-1", "us-central-1"]
50+
"regions": ["asia-northeast1", "europe-west1", "us-central1"]
5151
}
5252
]
5353
}

redisinsight/api/src/__mocks__/feature.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ export const mockFeatureSso = Object.assign(new Feature(), {
186186
},
187187
{
188188
provider: 'GCP',
189-
regions: ['asia-northeast-1', 'europe-west-1', 'us-central-1']
189+
regions: ['asia-northeast1', 'europe-west1', 'us-central1']
190190
}
191191
],
192192
},

redisinsight/ui/src/components/oauth/oauth-select-plan/OAuthSelectPlan.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jest.mock('uiSrc/slices/app/features', () => ({
5050
},
5151
{
5252
provider: 'GCP',
53-
regions: ['asia-northeast-1', 'europe-west-1', 'us-central-1']
53+
regions: ['asia-northeast1', 'europe-west1', 'us-central1']
5454
}
5555
],
5656
}

redisinsight/ui/src/components/oauth/oauth-select-plan/OAuthSelectPlan.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import { CloudSubscriptionPlanResponse } from 'apiSrc/modules/cloud/subscription
3737
import { OAuthProvider, OAuthProviders } from './constants'
3838
import styles from './styles.module.scss'
3939

40-
export const DEFAULT_REGIONS = ['us-east-2', 'asia-northeast-1']
40+
export const DEFAULT_REGIONS = ['us-east-2', 'asia-northeast1']
4141
export const DEFAULT_PROVIDER = OAuthProvider.AWS
4242

4343
const getProviderRegions = (regions: Region[], provider: OAuthProvider) =>

0 commit comments

Comments
 (0)