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
This commit was created on github.com and signed with GitHub’s verified signature.
The key has expired.
Only report the first Content-Type header attached to a request in the item sent to Rollbar if there are more than one. The HTTP spec specifies that Content-Type can only appear once as a header. However, net/http has type Header map[string][]string which means that it is possible to have more than one value for this header. We saw one in the wild with more than one value set (albeit the same value repeated). (#47)
Add the ability to pass a context.Context to logging methods. For now this only is used to possibly pass a Person to the particular call by using NewPersonContext. (#46)