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: fix AppSec http memory retention
When AppSec is active, http calls have a long memory retention due
to a strong reference behind held. That reference is freed at the
end of a span for example, but it takes additional time and shows
in many memory profiles.
Fix that by using a weak reference and a specific handling to
circumvent that retention issue.
* fix: guarantee runtime metrics client is defined
This is a sync call, so it has never be an issue. If however
anything would report a metric sync from the native module at
construction time, client would have been undefined. Fix that by
moving the client construction before any possible usage.
0 commit comments