Skip to content

Commit 30b8339

Browse files
Merge pull request #2541 from RedisInsight/release/2.32.0
Release/2.32.0
2 parents 0293adf + 0f484ad commit 30b8339

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
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) =>

tests/e2e/tests/regression/insights/feature-flag.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ test('Verify that default config applied when remote config version is lower', a
4444

4545
const featureVersion = await JSON.parse(await getColumnValueFromTableInDB(featuresConfigTable, 'data')).version;
4646

47-
await t.expect(featureVersion).eql(2.3202, 'Config with lowest version applied');
47+
await t.expect(featureVersion).eql(2.3204, 'Config with lowest version applied');
4848
await t.expect(browserPage.InsightsPanel.insightsBtn.exists).notOk('Insights panel displayed when disabled in default config');
4949
});
5050
test('Verify that invaid remote config not applied even if its version is higher than in the default config', async t => {
@@ -54,7 +54,7 @@ test('Verify that invaid remote config not applied even if its version is higher
5454

5555
const featureVersion = await JSON.parse(await getColumnValueFromTableInDB(featuresConfigTable, 'data')).version;
5656

57-
await t.expect(featureVersion).eql(2.3202, 'Config highest version not applied');
57+
await t.expect(featureVersion).eql(2.3204, 'Config highest version not applied');
5858
await t.expect(browserPage.InsightsPanel.insightsBtn.exists).notOk('Insights panel displayed when disabled in default config');
5959
});
6060
test

0 commit comments

Comments
 (0)