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
adapter::execute_function isn't quite suitable for this because it can only invoke entry functions, and it only allows primitive return values. We will need a different code path that can
call public functions that take any argument type (pure values, immutable/mutable refs, etc)
return any non-reference type(s)
extract the return values and pipe them into a REST response for the API above
The text was updated successfully, but these errors were encountered:
This is a blocker for #3815.
adapter::execute_function
isn't quite suitable for this because it can only invokeentry
functions, and it only allows primitive return values. We will need a different code path that canThe text was updated successfully, but these errors were encountered: