Skip to content

Commit

Permalink
fix jaeger http endpoint (#5378)
Browse files Browse the repository at this point in the history
  • Loading branch information
trinity-1686a authored Sep 3, 2024
1 parent 707f22a commit 9d8fab0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion quickwit/quickwit-jaeger/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,10 @@ impl JaegerService {
default_operator: BooleanOperand::And,
lenient: true,
};
query.must.push(is_root.into());
let mut new_query = BoolQuery::default();
new_query.must.push(query.into());
new_query.must.push(is_root.into());
query = new_query;
}

let query_ast: QueryAst = query.into();
Expand Down

0 comments on commit 9d8fab0

Please sign in to comment.