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
As of Abaco 1.3.0, Abaco has a new synchronous execution mode, where a POST to an actor's mailbox will block until a response is received or timeout occurs. The result of the execution is returned as the body of the response. If bytes have been sent to the actor's /result endpoint, those bytes are returned. If not, the execution logs are returned.
Support this in abaco run as follows:
Add an -x option that specifies synchronous execution
Revise the message sending and response code to expect raw results in sync mode, no matter what the value of -v (verbose) is.
The text was updated successfully, but these errors were encountered:
As of Abaco 1.3.0, Abaco has a new synchronous execution mode, where a POST to an actor's mailbox will block until a response is received or timeout occurs. The result of the execution is returned as the body of the response. If bytes have been sent to the actor's
/result
endpoint, those bytes are returned. If not, the execution logs are returned.Support this in
abaco run
as follows:-x
option that specifies synchronous execution-v (verbose)
is.The text was updated successfully, but these errors were encountered: