You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Type-aware comparison in FilterX is incorrect for non-bultin types (e.g. otel), because we try to convert them to numbers in _evaluate_type_aware() and they end up being NaNs.
We'll probably need a virtual method for comparison.
a = otel_logrecord();
a == a; # false with otel, true with json
The text was updated successfully, but these errors were encountered:
Type-aware comparison in FilterX is incorrect for non-bultin types (e.g. otel), because we try to convert them to numbers in
_evaluate_type_aware()
and they end up being NaNs.We'll probably need a virtual method for comparison.
The text was updated successfully, but these errors were encountered: