셀프 업데이트 완료

This commit is contained in:
2024-11-12 12:25:52 +09:00
parent 592e00b98b
commit 43b5aee48b
2 changed files with 5 additions and 5 deletions

View File

@ -32,6 +32,7 @@ import (
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
"google.golang.org/grpc/status"
)
type runcommand struct {
@ -716,7 +717,9 @@ func (hc *houstonClient) Start() {
if client != nil {
err := hc.checkOperation(client)
if err != nil {
logger.Println("grpc.DialContext hc.checkOperation failed :", err)
if status.Convert(err).Message() != status.Convert(context.Canceled).Message() {
logger.Println("grpc.DialContext hc.checkOperation failed :", err)
}
client = nil
}
}