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
If there are two or more processes call function 'emysql:add_pool' together with the same PoolId, the function emysql_conn_mgr:has_pool/1 maybe return true both of them. So it will cause failure when you call the function emysql_conn_mgr:add_pool/1 in the second time, and notice that the function 'emysql_conn:open_connections/1' will be called success. It means you will make some connections with mysql but you never close the connections until the process down.
The text was updated successfully, but these errors were encountered:
If there are two or more processes call function 'emysql:add_pool' together with the same PoolId, the function
emysql_conn_mgr:has_pool/1
maybe return true both of them. So it will cause failure when you call the functionemysql_conn_mgr:add_pool/1
in the second time, and notice that the function 'emysql_conn:open_connections/1' will be called success. It means you will make some connections with mysql but you never close the connections until the process down.The text was updated successfully, but these errors were encountered: