Did that a few times to no avail. Is there an obvious first place to look for clues?
I do sometimes get this error in the console--not sure whether that's related or something I need to troubleshoot later:
```
Node.js v18.14.2
Unable to get pending invoices. KnexTimeoutError: Knex: Timeout acquiring a connection. The pool is probably full. Are you missing a .transacting(trx) call?
at Client_PG.acquireConnection (/app/node_modules/knex/lib/client.js:312:26)
at async Runner.ensureConnection (/app/node_modules/knex/lib/execution/runner.js:287:28)
at async Runner.run (/app/node_modules/knex/lib/execution/runner.js:30:19)
at async InvoiceRepository.findPendingInvoices (/app/src/repositories/invoice-repository.js:39:28)
at async PaymentsService.getPendingInvoices (/app/src/services/payments-service.js:30:20)
at async MaintenanceWorker.onSchedule (/app/src/app/maintenance-worker.js:34:26) {
sql: undefined,
bindings: undefined
}
/app/src/app/maintenance-worker.js:66
throw error;
^
KnexTimeoutError: Knex: Timeout acquiring a connection. The pool is probably full. Are you missing a .transacting(trx) call?
at Client_PG.acquireConnection (/app/node_modules/knex/lib/client.js:312:26)
at async Runner.ensureConnection (/app/node_modules/knex/lib/execution/runner.js:287:28)
at async Runner.run (/app/node_modules/knex/lib/execution/runner.js:30:19)
at async InvoiceRepository.findPendingInvoices (/app/src/repositories/invoice-repository.js:39:28)
at async PaymentsService.getPendingInvoices (/app/src/services/payments-service.js:30:20)
at async MaintenanceWorker.onSchedule (/app/src/app/maintenance-worker.js:34:26) {
sql: undefined,
bindings: undefined
}
```