This is an automated email from the ASF dual-hosted git repository.
dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git
The following commit(s) were added to refs/heads/master by this push:
new 5b3598f97 [INLONG-7955][Dashboard] Change the consumption query method
from get to post (#7956)
5b3598f97 is described below
commit 5b3598f97e0c74093b57e2b63041c84ae022cb75
Author: Lizhen <[email protected]>
AuthorDate: Fri May 5 22:02:03 2023 +0800
[INLONG-7955][Dashboard] Change the consumption query method from get to
post (#7956)
---
inlong-dashboard/src/ui/pages/ConsumeDashboard/index.tsx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/inlong-dashboard/src/ui/pages/ConsumeDashboard/index.tsx
b/inlong-dashboard/src/ui/pages/ConsumeDashboard/index.tsx
index af541665b..981bd7127 100644
--- a/inlong-dashboard/src/ui/pages/ConsumeDashboard/index.tsx
+++ b/inlong-dashboard/src/ui/pages/ConsumeDashboard/index.tsx
@@ -53,7 +53,8 @@ const Comp: React.FC = () => {
} = useRequest(
{
url: '/consume/list',
- params: options,
+ method: 'POST',
+ data: options,
},
{
refreshDeps: [options],