After successfully negiotiating the version at lower protocol, RDS incorrectly
set the proposed version to the higher protocol, causing the subsequent
reconnect to stall.
The fix was not to change the proposed version after the initial connection
setup.
Orabug:
1731355
Signed-off-by: Richard Frank <richard.frank@oracle.com>
(cherry picked from commit
1a14dda0d3d3195306f3a141227eb003e895fb58)
RDS_PROTOCOL_MINOR(conn->c_version));
rds_conn_destroy(conn);
return;
- } else {
- conn->c_proposed_version = RDS_PROTOCOL_VERSION;
}
}