Skip to content

Commit

Permalink
frontend: use key to filter by pipeline_id
Browse files Browse the repository at this point in the history
  • Loading branch information
rikimaru0345 committed Aug 20, 2024
1 parent 0310a9d commit a7b81fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ function isFilterMatch(str: string, m: TopicMessage) {


async function executeMessageSearch(search: MessageSearch, topicName: string, pipelineId: string) {
const filterCode: string = `return value.pipeline_id == "${pipelineId}";`;
const filterCode: string = `return key == "${pipelineId}";`;

const lastXHours = 5;
const startTime = new Date();
Expand Down

0 comments on commit a7b81fa

Please sign in to comment.