[Serverless] Disable allowDynamicConfigOverrides (#184476)

This commit is contained in:
Alejandro Fernández Haro 2024-06-06 23:34:20 +02:00 committed by GitHub
parent a23f7fca4f
commit 1956917879
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View file

@ -157,9 +157,6 @@ elasticsearch.ignoreVersionMismatch: true
# Limit maxSockets to 800 as we do in ESS, which improves reliability under high loads.
elasticsearch.maxSockets: 800
# Enable dynamic config to be updated via the internal HTTP requests
coreApp.allowDynamicConfigOverrides: true
# Visualizations editors readonly settings
vis_type_gauge.readOnly: true
vis_type_heatmap.readOnly: true

View file

@ -33,7 +33,8 @@ export default function telemetryConfigTest({ getService }: FtrProviderContext)
expect(body).toMatchObject(baseConfig);
});
it('GET should get updated labels after dynamically updating them', async () => {
// coreApp.allowDynamicConfigOverrides is disabled
it.skip('GET should get updated labels after dynamically updating them', async () => {
await supertest
.put('/internal/core/_settings')
.set(svlCommonApi.getInternalRequestHeader())

View file

@ -32,7 +32,8 @@ export default function telemetryConfigTest({ getService }: FtrProviderContext)
expect(body).toMatchObject(baseConfig);
});
it('GET should get updated labels after dynamically updating them', async () => {
// coreApp.allowDynamicConfigOverrides is disabled
it.skip('GET should get updated labels after dynamically updating them', async () => {
const uniqueJourneyName = `my-ftr-test-${new Date().getMilliseconds()}`;
await supertest
.put('/internal/core/_settings')

View file

@ -34,7 +34,8 @@ export default function telemetryConfigTest({ getService }: FtrProviderContext)
expect(body).toMatchObject(baseConfig);
});
it('GET should get updated labels after dynamically updating them', async () => {
// coreApp.allowDynamicConfigOverrides is disabled
it.skip('GET should get updated labels after dynamically updating them', async () => {
await supertest
.put('/internal/core/_settings')
.set(svlCommonApi.getInternalRequestHeader())