Skip to content

Commit

Permalink
#4 optimize error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-dammeier committed Dec 19, 2023
1 parent 34c1d34 commit bb26a2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/domainservice/doguInstallationDomainUseCase.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func (useCase DoguInstallationDomainUseCase) ValidateDoguHealth(installedDogus [
var healthErrors []error
for _, dogu := range installedDogus {
if dogu.Health != ecosystem.Healhty {
healthErrors = append(healthErrors, fmt.Errorf("dogu %s is unhealthy", dogu.Name))
healthErrors = append(healthErrors, fmt.Errorf("dogu %q is unhealthy", dogu.Name))
}
}

Expand Down

0 comments on commit bb26a2d

Please sign in to comment.