mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
disable execution_context service by default (#108534)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
e2c7313781
commit
7b03175395
3 changed files with 5 additions and 1 deletions
|
@ -10,7 +10,7 @@ import { TypeOf, schema } from '@kbn/config-schema';
|
|||
import { ServiceConfigDescriptor } from '../internal_types';
|
||||
|
||||
const configSchema = schema.object({
|
||||
enabled: schema.boolean({ defaultValue: true }),
|
||||
enabled: schema.boolean({ defaultValue: false }),
|
||||
});
|
||||
|
||||
/**
|
||||
|
|
|
@ -40,6 +40,9 @@ describe('trace', () => {
|
|||
allowFromAnyIp: true,
|
||||
},
|
||||
},
|
||||
execution_context: {
|
||||
enabled: true,
|
||||
},
|
||||
});
|
||||
await root.preboot();
|
||||
}, 30000);
|
||||
|
|
|
@ -60,6 +60,7 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
|
|||
'--corePluginDeprecations.noLongerUsed=still_using',
|
||||
// for testing set buffer duration to 0 to immediately flush counters into saved objects.
|
||||
'--usageCollection.usageCounters.bufferDuration=0',
|
||||
'--execution_context.enabled=true',
|
||||
...plugins.map(
|
||||
(pluginDir) => `--plugin-path=${path.resolve(__dirname, 'plugins', pluginDir)}`
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue