Rank 2: Process
Hello,
I migrated one of my Appwrite server from 1.3.7 to 1.3.8 and to a new domain.
When trying to call a function, I get an error message saying that the runtime is not activated.
I checked in the .env, I still have deno-1.24 in the _APP_FUNCTIONS_RUNTIMES variable.
I tried restarting several times, without luck.
I tried deno-1.21, not working either.
I tried removing the python-3.9 runtime, and it disappears. So I get the variable name correct.
I did run the docker compose exec migrate command.
I tried enabling the cpp-17.0 runtime, which works.
With this value:
_APP_FUNCTIONS_RUNTIMES=node-16.0,deno-1.24,cpp-17.0
I get these logs in appwrite-executor:
Warming up Node.js 16.0 environment...
Warming up C++ 17.0 environment...
Removing orphan runtimes...
Successfully Warmed up Node.js 16.0!
Successfully Warmed up C++ 17.0!
Edit for more context:
I have deno-1.24 functions deployed that have an execution history from the previous deployment.
Any idea?