Merge pull request #133728 from Frank-svg-dev/master

Fix the spelling error of grpc in the log
This commit is contained in:
Kubernetes Prow Robot
2025-09-16 20:00:09 -07:00
committed by GitHub

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
}