be4stOriginal post
Rank 2: Process
on client side i execute the function like this
functions.createExecution(
BuildConfig.APPWRITE_GEN_FN,
jsonData,
true,
"/path",
ExecutionMethod.POST,
)
but when i check the console the function is still processing..
and when i try to execute the function which might take more than 30secs i dont see any results in database (i.e i store data in database when function executes successfully)
is this expected? or am i missing something? please help as most of the work on function takes more 30sec and i dont get what i am expecting.
Summary
Developers are experiencing issue with async function execution taking longer than expected and not storing data in database. Make sure the function is not exceeding 30 seconds. Check your function code and console errors.