Fix the spelling error of grpc in the log

This commit is contained in:
pamforever
2025-08-27 19:14:22 +08:00
parent 28c8381aa5
commit 731e6def04

View File

@@ -100,7 +100,7 @@ func (c *client) Disconnect() error {
c.mutex.Lock()
if c.grpc != nil {
if err := c.grpc.Close(); err != nil {
klog.V(2).ErrorS(err, "Failed to close grcp connection", "resource", c.Resource())
klog.V(2).ErrorS(err, "Failed to close grpc connection", "resource", c.Resource())
}
c.grpc = nil
}