You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm seeing some problems in my tests that go away if I disable my app's queues, and they're all related to the Queues package trying to access PostgreSQL after they are supposed to (during/after application shutdown).
Should the driver be shutting down the event loop group that it owns during the lifecycle method here?
The text was updated successfully, but these errors were encountered:
I was seeing the Jobs table being accessed after I'd initiated shutdown of the app, so something isn't right, but I can't be sure that it's specific to this package, or the parent queues package.
In any case, switching to the in-memory test queue provider fixed the issue for me (and is probably more reasonable to use when testing).
vapor-queues-fluent-driver/Sources/QueuesFluentDriver/FluentQueuesDriver.swift
Lines 51 to 52 in 882718f
I'm seeing some problems in my tests that go away if I disable my app's queues, and they're all related to the Queues package trying to access PostgreSQL after they are supposed to (during/after application shutdown).
Should the driver be shutting down the event loop group that it owns during the lifecycle method here?
The text was updated successfully, but these errors were encountered: