mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#27344 Total failure to start the server
- length($sockdir) >= 80 !! mysql-test/mysql-test-run.pl: Create a shorter sockdir path as soon as length of sockdir path is equal to 80
This commit is contained in:
@ -1070,7 +1070,7 @@ sub command_line_setup () {
|
|||||||
# On some operating systems, there is a limit to the length of a
|
# On some operating systems, there is a limit to the length of a
|
||||||
# UNIX domain socket's path far below PATH_MAX, so try to avoid long
|
# UNIX domain socket's path far below PATH_MAX, so try to avoid long
|
||||||
# socket path names.
|
# socket path names.
|
||||||
$sockdir = tempdir(CLEANUP => 0) if ( length($sockdir) > 80 );
|
$sockdir = tempdir(CLEANUP => 0) if ( length($sockdir) >= 80 );
|
||||||
|
|
||||||
$master->[0]=
|
$master->[0]=
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user