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
HerelogErr is called before if (err.uow... check. It callserr.uow.pipeline which throws Cannot read properties of undefined (reading 'pipeline') if error was not properly handled with faulty etc.
In 0.x this logErr was insideif (err.uow)... and didn't cause such error
Probably intended to be pipeline: err.uow?.pipeline || 'undefined', (with question mark)
The text was updated successfully, but these errors were encountered:
Here
logErr
is called beforeif (err.uow...
check. It callserr.uow.pipeline
which throwsCannot read properties of undefined (reading 'pipeline')
if error was not properly handled withfaulty
etc.In
0.x
thislogErr
was insideif (err.uow)...
and didn't cause such errorProbably intended to be
pipeline: err.uow?.pipeline || 'undefined',
(with question mark)The text was updated successfully, but these errors were encountered: