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
fix(meps): Only overwrite status code if int (#58251)
When we fetch transaction.status results from metrics, the status code
that's returned back is not an int but rather a string with the value
we'd typically get if we resolve through the map. This causes issues
because for metrics responses, `transaction.status` gets set to `None`
for all rows.
This checks if the value is an int and if it is, fetch from the map,
otherwise don't overwrite it.
0 commit comments