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
I'm using a simple custom Sampler to collect failed rows.
When I run a failed rows check with a query, then the sample_context instance in the sampler will have access to the check_name, i.e. sample_context.check_name is being set.
When I run a failed rows check with an expression, the check_name in the sample_context is None.
I'm using a simple custom Sampler to collect failed rows.
When I run a failed rows check with a query, then the
sample_context
instance in the sampler will have access to thecheck_name
, i.e.sample_context.check_name
is being set.When I run a failed rows check with an expression, the
check_name
in thesample_context
is None.I did a bit of digging and saw that the UserDefinedFailedRowsCheck explicitely adds the
check_name
to its Metric, while the UserDefinedFailedRowsExpressionCheck does not. But I'm not sure if this really is the underlying issue.The text was updated successfully, but these errors were encountered: