Skip to content
This repository was archived by the owner on Apr 9, 2021. It is now read-only.

Commit b34b6dd

Browse files
author
Giuseppe Maxia
committed
Removed "--socket" from mysqlsh script
1 parent f96bbaa commit b34b6dd

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Changelog

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
3.2.11 16-Jul-2017
2+
- Removed "--socket" from mysqlsh script
13
3.2.10 03-May-2017
24
- Fixed error in --custom_mysqld handling
35
3.2.09 01-May-2017

lib/MySQL/Sandbox.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ our @EXPORT_OK= qw( is_port_open
3030
split_version
3131
) ;
3232

33-
our $VERSION=q{3.2.10};
33+
our $VERSION=q{3.2.11};
3434
our $DEBUG;
3535

3636
BEGIN {

lib/MySQL/Sandbox/Recipes.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package MySQL::Sandbox::Recipes;
33
use strict;
44
use warnings;
55

6-
our $VERSION=q{3.2.10};
6+
our $VERSION=q{3.2.11};
77

88
1;
99
__END__

lib/MySQL/Sandbox/Scripts.pm

+2-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ our @EXPORT_OK = qw(
1717
);
1818
our @EXPORT = @EXPORT_OK;
1919

20-
our $VERSION=q{3.2.10};
20+
our $VERSION=q{3.2.11};
2121

2222
our @MANIFEST = (
2323
'clear.sh',
@@ -1568,8 +1568,7 @@ case $mode in
15681568
--sqlc \
15691569
--user=_DBUSER_ \
15701570
--password=_DBPASSWORD_ \
1571-
--port=_SERVERPORT_ \
1572-
--socket=_GLOBALTMPDIR_/mysql_sandbox_SERVERPORT_.sock "$@"
1571+
--port=_SERVERPORT_ "$@"
15731572
;;
15741573
--js)
15751574
mysqlsh \

0 commit comments

Comments
 (0)