You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: polaris-plugins/polaris-plugins-connector/connector-polaris-grpc/src/main/java/com/tencent/polaris/plugins/connector/grpc/Connection.java
+24-7
Original file line number
Diff line number
Diff line change
@@ -128,14 +128,31 @@ public void closeConnection() {
Copy file name to clipboardExpand all lines: polaris-plugins/polaris-plugins-connector/connector-polaris-grpc/src/main/java/com/tencent/polaris/plugins/connector/grpc/SpecStreamClient.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -264,9 +264,9 @@ public void onNext(ResponseProto.DiscoverResponse response) {
264
264
return;
265
265
}
266
266
if (updateTask.getTaskType() == Type.FIRST) {
267
-
LOG.info("[ServerConnector]receive response for {}", serviceEventKey);
267
+
LOG.info("[ServerConnector]request(id={}) receive response for {}", getReqId(), serviceEventKey);
268
268
} else {
269
-
LOG.debug("[ServerConnector]receive response for {}", serviceEventKey);
269
+
LOG.debug("[ServerConnector]request(id={}) receive response for {}", getReqId(), serviceEventKey);
0 commit comments