summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Elastic
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-03-08 21:52:14 +0100
committerDylan William Hardison <dylan@hardison.net>2017-03-09 03:32:23 +0100
commita312a33e31d7159cf6cd153eac044e35a8dc38a3 (patch)
tree7fb15173419a843433ecaa2a002e01b6b75092c6 /Bugzilla/Elastic
parentf52dda762fb47562ccf21f359ad679156a16e5c9 (diff)
downloadbugzilla-a312a33e31d7159cf6cd153eac044e35a8dc38a3.tar.gz
bugzilla-a312a33e31d7159cf6cd153eac044e35a8dc38a3.tar.xz
fix regex typo: s/s/\\s/
Diffstat (limited to 'Bugzilla/Elastic')
-rw-r--r--Bugzilla/Elastic/Role/HasClient.pm2
1 files changed, 1 insertions, 1 deletions
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',
);
}