diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2020-08-10 17:33:48 +0000 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2020-08-10 17:33:48 +0000 |
commit | 4ea915e28c3fc8abd164977408f8a69b61e4a997 (patch) | |
tree | e31a0ea415c4d2a12769f99490686f791f6bba79 /sql/handle_connections_win.h | |
parent | 5611df6774a7e60f2fc84350b88b60753628466e (diff) | |
download | mariadb-git-4ea915e28c3fc8abd164977408f8a69b61e4a997.tar.gz |
MDEV-23279 main.named_pipe test timeouts if called twice in a row
The test timeouts, because mtr is waiting for pid file.
The pid file is not there, because expected to fail mysqld startup
(duplicate named pipe name), this startup removed pid file of the running
mysqld instance.
To fix, split handle_connections_win() into the initialization part,
and accept/handle part, like it is done elsewhere.
The initialization part runs before pid file handling, and aborts on errors
, thus avoiding pid file overwrites.
Diffstat (limited to 'sql/handle_connections_win.h')
-rw-r--r-- | sql/handle_connections_win.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/handle_connections_win.h b/sql/handle_connections_win.h index a81f4346fb2..bf66c081473 100644 --- a/sql/handle_connections_win.h +++ b/sql/handle_connections_win.h @@ -18,3 +18,4 @@ Creates new (THD) connections.. */ extern void handle_connections_win(); +extern void network_init_win(); |