mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[Serverless] Disable allowDynamicConfigOverrides
(#184476)
This commit is contained in:
parent
a23f7fca4f
commit
1956917879
4 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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())
|
||||
|
|
|
@ -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')
|
||||
|
|
|
@ -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())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue