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
Two classes, ConnectionPool and CloudConnectionPool, are extensions of the BaseConnectionPool class. While ConnectionPool implements the markDead and markAlive methods within the class, but CloudConnectionPooldoes not. This means that when using CloudConnectionPool, calling these methods has no effect.
The text was updated successfully, but these errors were encountered:
What is the bug?
BaseConnectionPool
methods markAlive and markDead are not implemented, but are called and passedconnection
argument, example:They just return instance of the class. See:
Should be
Two classes, ConnectionPool and CloudConnectionPool, are extensions of the
BaseConnectionPool
class. WhileConnectionPool
implements themarkDead
andmarkAlive
methods within the class, butCloudConnectionPool
does not. This means that when usingCloudConnectionPool
, calling these methods has no effect.The text was updated successfully, but these errors were encountered: