This is an automated email from the ASF dual-hosted git repository. xiangfu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push: new 41ef450250 Schema add UI: fix passing wrong data in the request header (#11602) 41ef450250 is described below commit 41ef4502509c10dac8242b288625348663418904 Author: Jayesh Choudhary <jayeshchoudhary...@gmail.com> AuthorDate: Sat Sep 16 13:20:53 2023 +0530 Schema add UI: fix passing wrong data in the request header (#11602) * fix(ui): UI shows a blank screen when it encounters a unknown task * UI: fix incorrect content type passed in request headers --- pinot-controller/src/main/resources/app/requests/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pinot-controller/src/main/resources/app/requests/index.ts b/pinot-controller/src/main/resources/app/requests/index.ts index 52aa9be95a..23727ca10f 100644 --- a/pinot-controller/src/main/resources/app/requests/index.ts +++ b/pinot-controller/src/main/resources/app/requests/index.ts @@ -229,13 +229,13 @@ export const rebalanceBrokersForTable = (tableName: string): Promise<AxiosRespon baseApi.post(`/tables/${tableName}/rebuildBrokerResourceFromHelixTags`, null, {headers}); export const validateSchema = (schemaObject: string): Promise<AxiosResponse<OperationResponse>> => - baseApi.post(`/schemas/validate`, JSON.stringify(schemaObject), {headers}); + baseApi.post(`/schemas/validate`, schemaObject, {headers}); export const validateTable = (tableObject: string): Promise<AxiosResponse<OperationResponse>> => baseApi.post(`/tables/validate`, JSON.stringify(tableObject), {headers}); export const saveSchema = (schemaObject: string): Promise<AxiosResponse<OperationResponse>> => - baseApi.post(`/schemas`, JSON.stringify(schemaObject), {headers}); + baseApi.post(`/schemas`, schemaObject, {headers}); export const saveTable = (tableObject: string): Promise<AxiosResponse<OperationResponse>> => baseApi.post(`/tables`, JSON.stringify(tableObject), {headers}); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org