Skip to content

Commit 90fe103

Browse files
jonwalstedtclaude
andcommitted
[Workflows] Fix config comment: workflowDriven not workflow_driven
Kibana config schema properties are camelCase; snake_case in the YAML path reference was incorrect. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent e03b20a commit 90fe103

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/platform/plugins/shared/workflows_execution_engine/server

src/platform/plugins/shared/workflows_execution_engine/server/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ const configSchema = schema.object({
7676
/**
7777
* Synchronous workflow execution path — used by the inference anonymization pipeline
7878
* to run workflows inline within an HTTP request without persisting execution state to
79-
* Elasticsearch. Must be enabled alongside `xpack.inference.anonymization.workflow_driven`.
79+
* Elasticsearch. Must be enabled alongside `xpack.inference.anonymization.workflowDriven`.
8080
*/
8181
syncExecution: schema.object({
8282
/**
8383
* Master switch for the synchronous execution path. Must be set to true alongside
84-
* `xpack.inference.anonymization.workflow_driven: true` to enable workflow-driven
84+
* `xpack.inference.anonymization.workflowDriven: true` to enable workflow-driven
8585
* PII anonymization. Defaults to false so the path is inert until explicitly activated.
8686
*/
8787
enabled: schema.boolean({ defaultValue: false }),

0 commit comments

Comments
 (0)