Skip to content

Commit

Permalink
cmd/atlas/internal/docker: fix lint error (#3362)
Browse files Browse the repository at this point in the history
  • Loading branch information
a8m authored Feb 3, 2025
1 parent 13b1825 commit fe39974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/atlas/internal/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ func (c *Container) PingURL(u url.URL) string {
// validate that no empty values are given.
func (c *Config) validate() error {
if c == nil || c.Image == "" || c.Port == "" || c.Out == nil {
return fmt.Errorf("invalid configuration %q", c)
return fmt.Errorf("invalid configuration %#v", c)
}
return nil
}
Expand Down

0 comments on commit fe39974

Please sign in to comment.