We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
db74b27
fix #4195
b692508
Fixes alibaba#4195 again
b09f1a1
Fixes #4195 again
c514f6c
No branches or pull requests
初步分析:
com.alibaba.druid.pool.DruidDataSource的close只是lock加锁,设置closing状态,把connection里的连接close,然后状态设为closed,但是private boolean put(DruidConnectionHolder holder, long createTaskId)这个方法并没有判断closing和closed状态,所以关闭datasource时正在创建的连接依然会存活。
The text was updated successfully, but these errors were encountered: