Hi team,
Am using the Docusign V 3.0.3. In my app I was testing the app in lower network. And I was getting the success response for envelope synching the API, but in the code it's entering the notification method of failing.
NotificationCenter.default.addObserver(self, selector: #selector(syncingFailed), name: NSNotification.Name.DSMEnvelopeSyncingFailed, object: nil)
@objc private func syncingFailed(notification: NSNotification) {
dLog(logType: .docusign, "Docusign SDK envelope syncing failed")
}
Because of its entering the failed case, the envelope synching API will retry for 5 times, even if its gets success.
I can see that the API call duration showing 51,47,47,46,47 Seconds.
Is there any limit that it will retry only 5 times?
Could you please tell me why the failed notification method getting calling even if I got the success response and valid envelopId?
Thanks,
Jacob