Этот коммит содержится в:
Alejandro García Montoro
2024-02-27 03:43:12 +01:00
коммит произвёл GitHub
родитель f1a37e06bc
Коммит fac1245143
5 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@@ -13,7 +13,7 @@ func checkValidSocket(socketPath string) error {
// check file mode and permissions
fi, err := os.Stat(socketPath)
if err != nil && os.IsNotExist(err) {
return fmt.Errorf("socket file %q doesn't exists, please check the server configuration for local mode", socketPath)
return fmt.Errorf("socket file %q doesn't exist, please check the server configuration for local mode", socketPath)
} else if err != nil {
return err
}