Skip to content

Commit

Permalink
[INLONG-9995][Manager] Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
fuweng11 committed Apr 16, 2024
1 parent c0b301f commit 513bfad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public String createGroup(InlongGroupRequest groupInfo) {
}

/**
* Batch create an inlong group
* Batch create inlong group
*/
public List<String> batchCreateGroup(List<InlongGroupRequest> groupRequestList) {
Response<List<String>> response =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public Integer createStreamInfo(InlongStreamInfo streamInfo) {
}

/**
* Batch create an inlong stream.
* Batch create inlong stream.
*/
public List<Integer> batchCreateStreamInfo(List<InlongStreamInfo> streamInfos) {
Response<List<Integer>> response = ClientUtils.executeHttpCall(inlongStreamApi.batchCreateStream(streamInfos));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class ApplyGroupProcessForm extends BaseProcessForm {
@ApiModelProperty(value = "All inlong stream info under the inlong group, including the sink info")
private List<InlongStreamBriefInfo> streamInfoList;

@ApiModelProperty(value = "Inlong group info list")
@ApiModelProperty(value = "Inlong group full info list")
private List<GroupFullInfo> groupFullInfoList;

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class InlongGroupApproveForm extends BaseTaskForm {
@ApiModelProperty(value = "All inlong stream info under the inlong group, including the sink info")
private List<InlongStreamApproveRequest> streamApproveInfoList;

@ApiModelProperty(value = "Inlong group info list request")
@ApiModelProperty(value = "Inlong group approve full info list")
private List<GroupApproveFullRequest> groupApproveFullInfoList;

@Override
Expand Down

0 comments on commit 513bfad

Please sign in to comment.