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

supabase / storage / 15439109207

04 Jun 2025 09:46AM UTC coverage: 77.775% (-0.4%) from 78.159%
15439109207

Pull #696

github

web-flow
Merge 10a96e63f into d82ebecc1
Pull Request #696: feat: pgboss v10

1538 of 2141 branches covered (71.84%)

Branch coverage included in aggregate %.

172 of 475 new or added lines in 28 files covered. (36.21%)

5 existing lines in 3 files now uncovered.

17387 of 22192 relevant lines covered (78.35%)

110.03 hits per line

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

66.67
/src/http/routes/admin/queue.ts
1
import { FastifyInstance } from 'fastify'
1✔
2
import apiKey from '../../plugins/apikey'
1✔
3
import { getConfig } from '../../../config'
1✔
4
import { UpgradePgBossV10 } from '@storage/events'
1✔
5

1✔
6
const { pgQueueEnable } = getConfig()
1✔
7

1✔
8
export default async function routes(fastify: FastifyInstance) {
1✔
9
  fastify.register(apiKey)
1✔
10

1✔
11
  fastify.post('/migrate/pgboss-v10', async (req, reply) => {
1✔
NEW
12
    if (!pgQueueEnable) {
×
NEW
13
      return reply.status(400).send({ message: 'Queue is not enabled' })
×
NEW
14
    }
×
NEW
15

×
NEW
16
    await UpgradePgBossV10.send({})
×
NEW
17

×
NEW
18
    return reply.send({ message: 'Migration scheduled' })
×
19
  })
1✔
20
}
1✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc