Skip to content

Commit 6a51462

Browse files
committed
Fixed Search Index related bug for Local Cluster scenario
Signed-off-by: saimedhi <saimedhi@amazon.com>
1 parent dcd8b58 commit 6a51462

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

server/routes/flow_framework_routes_service.ts

+3
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@ export function registerFlowFrameworkRoutes(
157157
reprovision: schema.boolean(),
158158
}),
159159
body: schema.any(),
160+
query: schema.object({
161+
data_source_version: schema.maybe(schema.string()),
162+
}),
160163
},
161164
},
162165
flowFrameworkRoutesService.updateWorkflow

server/routes/opensearch_routes_service.ts

+1
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ export function registerOpenSearchRoutes(
157157
body: schema.any(),
158158
query: schema.object({
159159
verbose: schema.boolean(),
160+
data_source_version: schema.maybe(schema.string()),
160161
}),
161162
},
162163
},

0 commit comments

Comments
 (0)