Skip to content
This repository was archived by the owner on Mar 1, 2026. It is now read-only.

Commit e5b99cd

Browse files
jtolmervlad-lesin
authored andcommitted
Fix rare "error 2062" failure in various tests
Summary: WebScaleSQL Feature: Basic Test Fixes Occasionally, wait_until_connected_again will fail with error 2062, when its supposed to continue to retry. This adds that error to its list of acceptable errors while retrying. Note: If it never successfully reconnects, the test will still fail, so this does not hide any actual errors. It just removes some false test failures. Test Plan: Jenkins The stress tests suite found this bug, but the problem is not specific to those tests. Reviewers: pivanof, darnaut, inaam-rana, jeremycole Reviewed By: jeremycole Subscribers: CalvinSun, jtolmer Differential Revision: https://reviews.facebook.net/D23607
1 parent 0a4f93c commit e5b99cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎mysql-test/include/wait_until_connected_again.inc‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ while ($mysql_errno)
1010
# Strangely enough, the server might return "Too many connections"
1111
# while being shutdown, thus 1040 is an "allowed" error
1212
# See BUG#36228
13-
--error 0,1040,1053,2002,2003,2006,2013
13+
--error 0,1040,1053,2002,2003,2006,2013,2062
1414
show status;
1515

1616
dec $counter;

0 commit comments

Comments
 (0)