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
Issue:
When calling a long-running async function (10+ seconds), the function never returns to the caller. No error messages are fired or exposed. (Was quite difficult to debug and distill it)
Expected:
The call would return regardless of time needed to execute
Workarounds:
I tried to apply the 'health pinger' where I start a process that continuously (and quickly) makes back and forth calls every 100ms - the longer async call still did not return.
I'm currently changing all my long-running methods to be polling based - firing off the long running process then polling to find a result, defeating the purpose of Eureca
Thanks! Much appreciated!
The text was updated successfully, but these errors were encountered:
This is similar/related to an issue called out prior -
Issue:
When calling a long-running async function (10+ seconds), the function never returns to the caller. No error messages are fired or exposed. (Was quite difficult to debug and distill it)
Expected:
The call would return regardless of time needed to execute
Workarounds:
I tried to apply the 'health pinger' where I start a process that continuously (and quickly) makes back and forth calls every 100ms - the longer async call still did not return.
I'm currently changing all my long-running methods to be polling based - firing off the long running process then polling to find a result, defeating the purpose of Eureca
Thanks! Much appreciated!
The text was updated successfully, but these errors were encountered: