mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
enable execution_context by default (#119932)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
722a33ffb3
commit
5667523793
3 changed files with 1 additions and 3 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: false }),
|
||||
enabled: schema.boolean({ defaultValue: true }),
|
||||
});
|
||||
|
||||
/**
|
||||
|
|
|
@ -60,7 +60,6 @@ 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)}`
|
||||
),
|
||||
|
|
|
@ -43,7 +43,6 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
|
|||
`--elasticsearch.ssl.certificateAuthorities=${CA_CERT_PATH}`,
|
||||
|
||||
'--server.requestId.allowFromAnyIp=true',
|
||||
'--execution_context.enabled=true',
|
||||
'--logging.appenders.file.type=file',
|
||||
`--logging.appenders.file.fileName=${logFilePath}`,
|
||||
'--logging.appenders.file.layout.type=json',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue