healchow commented on code in PR #4461:
URL: https://github.com/apache/incubator-inlong/pull/4461#discussion_r886539918
##########
inlong-manager/manager-common/src/main/java/org/apache/inlong/manager/common/pojo/sink/postgres/PostgresSinkListResponse.java:
##########
@@ -19,15 +19,24 @@
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
+import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
+import lombok.experimental.SuperBuilder;
+import org.apache.inlong.manager.common.enums.SinkType;
import org.apache.inlong.manager.common.pojo.sink.SinkListResponse;
+import org.apache.inlong.manager.common.util.JsonTypeDefine;
/**
* Response of Postgres sink list
*/
@Data
+@SuperBuilder
+@NoArgsConstructor
+@AllArgsConstructor
@EqualsAndHashCode(callSuper = true)
+@JsonTypeDefine(SinkType.SINK_POSTGRES)
Review Comment:
Fixed.
##########
pom.xml:
##########
@@ -171,7 +171,7 @@
<commons.collections.version>3.2.2</commons.collections.version>
<commons.collections4.version>4.3</commons.collections4.version>
- <guava.version>19.0</guava.version>
+ <guava.version>31.0.1-jre</guava.version>
Review Comment:
Add in the next PR.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]