Skip to content

Commit fbfedca

Browse files
committed
Fix log message typo
Signed-off-by: Bryan Frimin <bryan@getprobo.com>
1 parent 000ace5 commit fbfedca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

unit/unit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ func (u *Unit) runMetricsServer(ctx context.Context, initialized chan<- promethe
269269
go func() {
270270
err = httpServer.Serve(listener)
271271
if err != nil && !errors.Is(err, http.ErrServerClosed) {
272-
serverErrCh <- fmt.Errorf("cannot server http request: %w", err)
272+
serverErrCh <- fmt.Errorf("cannot serve http request: %w", err)
273273
}
274274
close(serverErrCh)
275275
}()

0 commit comments

Comments
 (0)