summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Elastic/Search.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Elastic/Search.pm')
-rw-r--r--Bugzilla/Elastic/Search.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/Bugzilla/Elastic/Search.pm b/Bugzilla/Elastic/Search.pm
index e1af91032..26ab71bec 100644
--- a/Bugzilla/Elastic/Search.pm
+++ b/Bugzilla/Elastic/Search.pm
@@ -31,7 +31,6 @@ has '_order' => ( is => 'lazy', init_arg => undef );
has 'invalid_order_columns' => ( is => 'lazy' );
with 'Bugzilla::Elastic::Role::HasClient';
-with 'Bugzilla::Elastic::Role::HasIndexName';
with 'Bugzilla::Elastic::Role::Search';
my @SUPPORTED_FIELDS = qw(
@@ -92,9 +91,9 @@ sub data {
my $body = $self->es_query;
my $result = eval {
$self->client->search(
- index => $self->index_name,
- type => 'bug',
- body => $body,
+ index => Bugzilla::Bug->ES_INDEX,
+ type => Bugzilla::Bug->ES_TYPE,
+ body => $body,
);
};
die $@ unless $result;