diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-03-08 21:52:14 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-03-09 03:32:23 +0100 |
commit | a312a33e31d7159cf6cd153eac044e35a8dc38a3 (patch) | |
tree | 7fb15173419a843433ecaa2a002e01b6b75092c6 /Bugzilla | |
parent | f52dda762fb47562ccf21f359ad679156a16e5c9 (diff) | |
download | bugzilla-a312a33e31d7159cf6cd153eac044e35a8dc38a3.tar.gz bugzilla-a312a33e31d7159cf6cd153eac044e35a8dc38a3.tar.xz |
fix regex typo: s/s/\\s/
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Elastic/Role/HasClient.pm | 2 |
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', ); } |