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
BUG#24296005 XPLUGIN UNIX SOCK NOT CLEANED AFTER SERVER CLEAN SHUTDOWN/XPLUGIN NOT INSTALLED
Description:
Unix socket file and lock file were not deleted by X Plugin.
Solution:
In case of successful allocation of UNIX socket the plugin when
exiting is going to call `unlink` on both socket and lock file.
RB: 13542
Reviewed-by: Grzegorz Szwarc <[email protected]>
Copy file name to clipboardExpand all lines: rapid/plugin/x/tests/mtr/t/connection_unixsocket_invalid.test
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ let $restart_parameters = restart: --loose-mysqlx-socket=;
42
42
--eval select (IF(VARIABLE_VALUE is NULL, "",VARIABLE_VALUE) = "") as 'result' FROM performance_schema.global_status WHERE VARIABLE_NAME like 'Mysqlx_socket';
43
43
--enable_query_log
44
44
45
-
--replace_regex /ERROR: Connection refused, while connecting to .+\.sock/ERROR: Connection refused, while connecting to SOCKET/
45
+
--replace_regex /ERROR: No such file or directory, while connecting to .+\.sock/ERROR: No such file or directory connecting to SOCKET/
@@ -59,7 +59,7 @@ let $restart_parameters = restart: --loose-mysqlx-socket="/dev/null/mysqlx.sock"
59
59
--eval select (IF(VARIABLE_VALUE is NULL, "",VARIABLE_VALUE) = "") as 'result' FROM performance_schema.global_status WHERE VARIABLE_NAME like 'Mysqlx_socket';
60
60
--enable_query_log
61
61
62
-
--replace_regex /ERROR: Connection refused, while connecting to .+\.sock/ERROR: Connection refused, while connecting to SOCKET/
62
+
--replace_regex /ERROR: No such file or directory, while connecting to .+\.sock/ERROR: No such file or directory connecting to SOCKET/
0 commit comments