| Bug #31423 | bug fix in proxy_disconnect_client | ||
|---|---|---|---|
| Submitted: | 5 Oct 2007 17:32 | Modified: | 16 Nov 2009 10:54 |
| Reporter: | Cheuksan Wang | Email Updates: | |
| Status: | Verified | Impact on me: | |
| Category: | MySQL Proxy: Core | Severity: | S1 (Critical) |
| Version: | trunk | OS: | Any |
| Assigned to: | Assigned Account | CPU Architecture: | Any |
| Tags: | Contribution | ||
[8 Oct 2007 18:55]
MySQL Verification Team
Thank you for the bug report.
[8 Jun 2009 22:33]
liz drachnik
Hello Cheuksan - In order for us to continue the process of reviewing your contribution to MySQL - We need you to review and sign the Sun|MySQL contributor agreement (the "SCA") The process is explained here: http://forge.mysql.com/wiki/Sun_Contributor_Agreement Getting a signed/approved SCA on file will help us facilitate your contribution-- this one, and others in the future. Thank you ! Liz Drachnik - Program Manager - MySQL
[2 Oct 2009 23:00]
Bugs System
No feedback was provided for this bug for over a month, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open".
[4 Nov 2009 0:00]
Bugs System
No feedback was provided for this bug for over a month, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open".

Description: In network-mysqld-proxy.c, proxy_disconnect_client seems to be missing a line to set the use_pooled_connection. Otherwise the connection will not be added back into the pool. Am I correct? Cheuksan Wang How to repeat: Read network-mysqld-proxy.c Suggested fix: Index: network-mysqld-proxy.c =================================================================== --- network-mysqld-proxy.c (revision 258) +++ network-mysqld-proxy.c (working copy) @@ -3906,6 +3906,7 @@ break; case PROXY_IGNORE_RESULT: + use_pooled_connection = TRUE; break; default: g_error("%s.%d: ... ", __FILE__, __LINE__);