Skip to content

Commit 70228eb

Browse files
authoredMar 4, 2024··
Merge pull request #8 from schigh/fix/error-placeholder
fixed error placeholder in fmt command
2 parents c25ee34 + 585db81 commit 70228eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎manager/std/manager.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ func (m *Manager) Stop(ctx context.Context) error {
186186
}
187187

188188
// TODO: come up with a better way to convey 0...N errors at once
189-
return fmt.Errorf("%s.manager.std: "+strings.Join(errStrs, "\n"), health.ErrHealth)
189+
return fmt.Errorf("%w.manager.std: "+strings.Join(errStrs, "\n"), health.ErrHealth)
190190
}
191191

192192
return nil

0 commit comments

Comments
 (0)
Please sign in to comment.