Skip to content

Commit

Permalink
chore: lowercase error message
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Apr 3, 2024
1 parent 469ac7d commit 7631a30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/compose/compose_local.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func (dc *LocalDockerCompose) applyStrategyToRunningContainer() error {

err = strategy.WaitUntilReady(context.Background(), dockercontainer)
if err != nil {
return fmt.Errorf("Unable to apply wait strategy %v to service %s due to %w", strategy, k.service, err)
return fmt.Errorf("unable to apply wait strategy %v to service %s due to %w", strategy, k.service, err)
}
}
return nil
Expand Down

0 comments on commit 7631a30

Please sign in to comment.