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 adc81bea81 [INLONG-8254][Dashboard] Supports get brief information of
inlong stream (#8255)
adc81bea81 is described below
commit adc81bea81906749bd841b419fada10fc2f05b23
Author: Lizhen <[email protected]>
AuthorDate: Thu Jun 15 19:10:30 2023 +0800
[INLONG-8254][Dashboard] Supports get brief information of inlong stream
(#8255)
---
inlong-dashboard/src/ui/pages/GroupDetail/DataStorage/DetailModal.tsx | 2 +-
.../src/ui/pages/GroupDetail/DataStream/StreamItemModal.tsx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/inlong-dashboard/src/ui/pages/GroupDetail/DataStorage/DetailModal.tsx
b/inlong-dashboard/src/ui/pages/GroupDetail/DataStorage/DetailModal.tsx
index 048be24c70..98ef8c916f 100644
--- a/inlong-dashboard/src/ui/pages/GroupDetail/DataStorage/DetailModal.tsx
+++ b/inlong-dashboard/src/ui/pages/GroupDetail/DataStorage/DetailModal.tsx
@@ -80,7 +80,7 @@ const Comp: React.FC<DetailModalProps> = ({
const { data: streamDetail, run: getStreamDetail } = useRequest(
streamId => ({
- url: `/stream/get`,
+ url: `/stream/getBrief`,
params: {
groupId: inlongGroupId,
streamId,
diff --git
a/inlong-dashboard/src/ui/pages/GroupDetail/DataStream/StreamItemModal.tsx
b/inlong-dashboard/src/ui/pages/GroupDetail/DataStream/StreamItemModal.tsx
index 4687994d56..b5ed997196 100644
--- a/inlong-dashboard/src/ui/pages/GroupDetail/DataStream/StreamItemModal.tsx
+++ b/inlong-dashboard/src/ui/pages/GroupDetail/DataStream/StreamItemModal.tsx
@@ -109,7 +109,7 @@ const Comp: React.FC<Props> = ({ inlongGroupId,
inlongStreamId, mqType, ...modal
const { data: savedData, run: getStreamData } = useRequest(
{
- url: '/stream/get',
+ url: '/stream/getBrief',
params: {
groupId: inlongGroupId,
streamId: inlongStreamId,