From a312a33e31d7159cf6cd153eac044e35a8dc38a3 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Wed, 8 Mar 2017 15:52:14 -0500 Subject: fix regex typo: s/s/\\s/ --- Bugzilla/Elastic/Role/HasClient.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Elastic') diff --git a/Bugzilla/Elastic/Role/HasClient.pm b/Bugzilla/Elastic/Role/HasClient.pm index 03a616310..8e2687880 100644 --- a/Bugzilla/Elastic/Role/HasClient.pm +++ b/Bugzilla/Elastic/Role/HasClient.pm @@ -17,7 +17,7 @@ sub _build_client { my ($self) = @_; return Search::Elasticsearch->new( - nodes => [ split(/s+/, Bugzilla->params->{elasticsearch_nodes}) ], + nodes => [ split(/\s+/, Bugzilla->params->{elasticsearch_nodes}) ], cxn_pool => 'Sniff', ); } -- cgit v1.2.3-24-g4f1b