Skip to content

Commit

Permalink
fix: conditional fwd tags
Browse files Browse the repository at this point in the history
Signed-off-by: Avik Basu <ab93@users.noreply.github.com>
  • Loading branch information
ab93 committed Feb 28, 2024
1 parent 76b739c commit db943a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numalogic/udfs/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def exec(self, keys: list[str], datum: Datum) -> Messages:
payload.metrics,
)
_increment_counter(counter=MSG_PROCESSED_COUNTER, labels=_metric_label_values)
msgs.append(Message(keys=keys, value=payload.to_json()))
msgs.append(Message(keys=keys, value=payload.to_json(), tags=["postprocess"]))

_LOGGER.debug(
"%s - Time taken in inference: %.4f sec",
Expand Down

0 comments on commit db943a6

Please sign in to comment.