• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

supabase / storage / 30379780849

28 Jul 2026 04:45PM UTC coverage: 53.191% (-27.1%) from 80.307%
30379780849

Pull #1269

github

web-flow
Merge 2846843fa into 20927735c
Pull Request #1269: fix: update pool reliably upon config changes

3671 of 7490 branches covered (49.01%)

Branch coverage included in aggregate %.

42 of 47 new or added lines in 4 files covered. (89.36%)

3545 existing lines in 156 files now uncovered.

7065 of 12694 relevant lines covered (55.66%)

71.05 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

33.33
/src/http/not-found-handler.ts
1
import { ErrorCode } from '@internal/errors'
2
import { FastifyInstance } from 'fastify'
3
import { errorSchema } from './schemas'
4

5
export function setRestNotFoundHandler(fastify: FastifyInstance) {
6
  fastify.setNotFoundHandler((request, reply) => {
16✔
UNCOV
7
    const serialize = reply.compileSerializationSchema(errorSchema, '404', 'application/json')
×
8

UNCOV
9
    return reply
×
10
      .status(404)
11
      .type('application/json')
12
      .serializer(serialize)
13
      .send({
14
        statusCode: '404',
15
        error: 'Not Found',
16
        message: `Route ${request.method}:${request.raw.url} not found`,
17
        code: ErrorCode.InvalidRequest,
18
      })
19
  })
20
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc