Skip to content

Commit

Permalink
Fixed bug related to Search Index in Local Cluster scenario (#654)
Browse files Browse the repository at this point in the history
* Fixed Search Index related bug for Local Cluster scenario

Signed-off-by: saimedhi <saimedhi@amazon.com>

* Fixed Search Index related bug for Local Cluster scenario

Signed-off-by: saimedhi <saimedhi@amazon.com>

* Fixed Search Index related bug for Local Cluster scenario

Signed-off-by: saimedhi <saimedhi@amazon.com>

---------

Signed-off-by: saimedhi <saimedhi@amazon.com>
(cherry picked from commit 372ea42)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Feb 28, 2025
1 parent 45968d5 commit c64c61d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions server/routes/flow_framework_routes_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ export function registerFlowFrameworkRoutes(
reprovision: schema.boolean(),
}),
body: schema.any(),
query: schema.object({
data_source_version: schema.maybe(schema.string()),
}),
},
},
flowFrameworkRoutesService.updateWorkflow
Expand Down Expand Up @@ -188,6 +191,9 @@ export function registerFlowFrameworkRoutes(
params: schema.object({
workflow_id: schema.string(),
}),
query: schema.object({
data_source_version: schema.maybe(schema.string()),
}),
},
},
flowFrameworkRoutesService.provisionWorkflow
Expand Down
2 changes: 2 additions & 0 deletions server/routes/opensearch_routes_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ export function registerOpenSearchRoutes(
body: schema.any(),
query: schema.object({
verbose: schema.boolean(),
data_source_version: schema.maybe(schema.string()),
}),
},
},
Expand Down Expand Up @@ -157,6 +158,7 @@ export function registerOpenSearchRoutes(
body: schema.any(),
query: schema.object({
verbose: schema.boolean(),
data_source_version: schema.maybe(schema.string()),
}),
},
},
Expand Down

0 comments on commit c64c61d

Please sign in to comment.