Hi everyone,
I’m currently in the middle of testing our Dwolla API integration for a mobile-first marketplace, and I’ve run into a bit of a performance wall that I’m hoping someone can shed some light on. We are using the sandbox environment to test various transfer statuses, but I’ve noticed that our webhook listener occasionally drops notifications when the testing device is under a heavy process load.
Lately, I’ve been running some automated background tasks and testing the limits of our mobile environment using some blox scripts to see how the device handles concurrent script execution while waiting for a payment status update. It seems like as soon as the background script activity spikes, the HTTP requests from our listener either timeout or the device fails to process the incoming webhook payload in time.
Has anyone else noticed their mobile-based listeners or client-side status polling getting throttled when there are other intensive executors running in the background? I’m trying to determine if I should be increasing our server-side timeout settings or if there’s a better way to ensure the Dwolla notifications take priority over other local script execution. I’m really worried that if a user is multitasking or running other heavy tools, they might miss a critical “transfer completed” notification.
Any advice on how to stabilize the connection and ensure consistent webhook processing during high-resource usage would be a huge help!