Skip to content

Commit e36632a

Browse files
committed
chore: cleanup
1 parent df1c4a1 commit e36632a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.golangci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,9 @@ issues:
448448
- path: internal/app/ # Should be documented in app.Appl interface.
449449
text: '`App[.]\w+` should have comment'
450450

451+
- path: internal/dal/
452+
text: '`(Config|Repo|New)` should have comment'
453+
451454
- path: internal/dal/ # Should be documented in app.Repo interface.
452455
text: '`Repo[.]\w+` should have comment'
453456

cmd/address-book/service.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func (s *service) runServe(ctxStartup, ctxShutdown Ctx, shutdown func()) (err er
6464
Addr: s.cfg.Addr,
6565
})
6666
if err != nil {
67-
return err
67+
return log.Err("failed to openapi.NewServer", "err", err)
6868
}
6969

7070
err = concurrent.Serve(ctxShutdown, shutdown,

0 commit comments

Comments
 (0)