Skip to content

Commit

Permalink
fix: error log (#863)
Browse files Browse the repository at this point in the history
Signed-off-by: Gaius <[email protected]>
  • Loading branch information
gaius-qi committed Jun 28, 2023
1 parent b82e0fa commit 8b72144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/rpc/manager/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ retry:
ClusterId: keepalive.ClusterId,
}); err != nil {
if _, err := stream.CloseAndRecv(); err != nil {
logger.Errorf("hostname %s cluster id %s close and recv stream failed", keepalive.HostName, keepalive.ClusterId, err)
logger.Errorf("hostname %s cluster id %v close and recv stream failed: %v", keepalive.HostName, keepalive.ClusterId, err)
}

cancel()
Expand Down

0 comments on commit 8b72144

Please sign in to comment.