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
The adapter tests does not close connection correctly resulting in tests for the redis adapter never quitting.
The problem is the at the moment is call init should not throw. Overwrites the connections with new one and then when the tests closes connection in afterEach the connection created in beforeEach is not closed.
I think it would be a good thing to require adapter.close() and handle the closing of database connections in the adapter utils.
The text was updated successfully, but these errors were encountered:
The adapter tests does not close connection correctly resulting in tests for the redis adapter never quitting.
The problem is the at the moment is
call init should not throw
. Overwrites the connections with new one and then when the tests closes connection inafterEach
the connection created inbeforeEach
is not closed.I think it would be a good thing to require
adapter.close()
and handle the closing of database connections in the adapter utils.The text was updated successfully, but these errors were encountered: