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
The implementation of curl has changed somewhat in PHP 8. Previously, curl handles were resources, but as of PHP 8 are now class objects. For this ticket, correct our instrumentation to account for this change when PHP 8 is defined.
Desired Behavior
All occurrences of IS_RESOURCE are accounted for and fixed in our instrumentation
Since curl_close() no longer closes the curl handle (a task left to GC), verify with valgrind that our tests do handle this situation gracefully and appropriately.
Summary
The implementation of
curl
has changed somewhat in PHP 8. Previously,curl
handles were resources, but as of PHP 8 are now class objects. For this ticket, correct our instrumentation to account for this change when PHP 8 is defined.Desired Behavior
IS_RESOURCE
are accounted for and fixed in our instrumentationcurl_close()
no longer closes the curl handle (a task left to GC), verify with valgrind that our tests do handle this situation gracefully and appropriately.The text was updated successfully, but these errors were encountered: