Merge branch 'main' into jwt-runtime-token

This commit is contained in:
Lunny Xiao
2024-02-05 10:48:15 +00:00
2 changed files with 5 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ func CheckIfDockerRunning(ctx context.Context, configDockerHost string) error {
_, err = cli.Ping(ctx)
if err != nil {
return fmt.Errorf("cannot ping the docker daemon, does it running? %w", err)
return fmt.Errorf("cannot ping the docker daemon, is it running? %w", err)
}
return nil