From dc4761012f43f4dabd8e5504c00796470808ca33 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Thu, 26 Dec 2013 19:12:13 -0500 Subject: [PATCH] Default to 127.0.0.1 in tests to work on MySQL 5.5 --- t/fts/indexed_mysql.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/fts/indexed_mysql.t b/t/fts/indexed_mysql.t index a54382ff8b6..0a4f026260b 100644 --- a/t/fts/indexed_mysql.t +++ b/t/fts/indexed_mysql.t @@ -32,7 +32,7 @@ sub setup_indexing { command => $RT::SbinPath .'/rt-setup-fulltext-index', dba => $ENV{'RT_DBA_USER'}, 'dba-password' => $ENV{'RT_DBA_PASSWORD'}, - url => "sphinx://localhost:$port/rt", + url => "sphinx://127.0.0.1:$port/rt", ); ok(!$exit_code, "setted up index"); diag "output: $output" if $ENV{'TEST_VERBOSE'};