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
For some reason these two methods are not using the default retry configuration oci.common.OciSdkDefaultRetryConfiguration as the others methods on this same lib.
It appears to has a problem on the node-sshpk library, which is used by http-signature which is used by oci.common.signer.DefaultRequestSigner.signHttpRequest, that only happens the first time that I try to used it. The message error that I got was this:
{
code: 'ERR_OSSL_DSO_COULD_NOT_LOAD_THE_SHARED_LIBRARY',
message: 'error:25066067:DSO support routines:dlfcn_load:could not load the shared library',
requestEndpoint: 'POST https://cell-1.queue.messaging.sa-saopaulo-1.oci.oraclecloud.com/20210201/queues/<queue_id>/messages',
troubleshootingPage: 'See https://docs.oracle.com/en-us/iaas/Content/API/Concepts/sdk_troubleshooting.htm for help troubleshooting this error, or contact support and provide this full error message.'
}
Debugging it, this was the line that was throwing the error:
But it was only happening when I used these two methods for first (which drove me crazy for a while).
So I saw that the difference of these methods to the others was the default retry configuration being used. When I changed it to be the same as the others, the problem was gone.
The text was updated successfully, but these errors were encountered:
For some reason these two methods are not using the default retry configuration
oci.common.OciSdkDefaultRetryConfiguration
as the others methods on this same lib.It appears to has a problem on the
node-sshpk
library, which is used byhttp-signature
which is used byoci.common.signer.DefaultRequestSigner.signHttpRequest
, that only happens the first time that I try to used it. The message error that I got was this:Debugging it, this was the line that was throwing the error:
But it was only happening when I used these two methods for first (which drove me crazy for a while).
So I saw that the difference of these methods to the others was the default retry configuration being used. When I changed it to be the same as the others, the problem was gone.
The text was updated successfully, but these errors were encountered: