-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change backtrace arguments to use class name rather than full object #89
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good 👍
@@ -90,11 +90,28 @@ private function formatBacktrace(array $backtrace) : array | |||
|
|||
return array_merge($context, [ | |||
'method' => $frame['function'] ?? null, | |||
'args' => $frame['args'] ?? null, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if it matters—does the null value behave the same way in the new method?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it doesn't. Now it throws:
"Undefined index: args", "/vendor/honeybadger-io/honeybadger-php/src/BacktraceFactory.php", 93
Found during Laravel Forge deployments since updating to honeybadger-laravel 1.7.2
Ref: Faults 54680936 and 54680937
/cc @sixlive
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll push a patch today, could you open an issue for it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#90 opened.
Description
This PR fixes a potential issue with v1.6.0 where invalid JSON gets passed to Honeybadger's API. I can't re-create the issue but I have a theory that there is an issue converting some classes to JSON. The library now only passes the class name if a class is a parameter.