The internal methods processPut, processPatch, and processDelete in ballerina/sap_http_client.bal retry the request using httpClient->post() when a CSRF token failure is detected.
Observed Behavior:
processPut retries with post
processPatch retries with post
processDelete retries with post
Expected Behavior:
These methods should use their respective HTTP verbs (put, patch, delete) during the retry attempt.