You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by he...@apache.org on 2022/11/04 03:14:52 UTC

[inlong] branch master updated: [INLONG-6395][Manager] Fix the wrong annotation in delete method of InlongStreamApi (#6396)

This is an automated email from the ASF dual-hosted git repository.

healchow 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 6949b5f77 [INLONG-6395][Manager] Fix the wrong annotation in delete method of InlongStreamApi (#6396)
6949b5f77 is described below

commit 6949b5f77b3c38f882b8252db5731e9de7182b4f
Author: vernedeng <de...@pku.edu.cn>
AuthorDate: Fri Nov 4 11:14:46 2022 +0800

    [INLONG-6395][Manager] Fix the wrong annotation in delete method of InlongStreamApi (#6396)
---
 .../org/apache/inlong/manager/client/api/service/InlongStreamApi.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inlong-manager/manager-client/src/main/java/org/apache/inlong/manager/client/api/service/InlongStreamApi.java b/inlong-manager/manager-client/src/main/java/org/apache/inlong/manager/client/api/service/InlongStreamApi.java
index 717609591..70362d236 100644
--- a/inlong-manager/manager-client/src/main/java/org/apache/inlong/manager/client/api/service/InlongStreamApi.java
+++ b/inlong-manager/manager-client/src/main/java/org/apache/inlong/manager/client/api/service/InlongStreamApi.java
@@ -64,5 +64,5 @@ public interface InlongStreamApi {
     Call<Response<Boolean>> deleteProcess(@Path("groupId") String groupId, @Path("streamId") String streamId);
 
     @DELETE("stream/delete")
-    Call<Response<Boolean>> delete(@Path("groupId") String groupId, @Path("streamId") String streamId);
+    Call<Response<Boolean>> delete(@Query("groupId") String groupId, @Query("streamId") String streamId);
 }