Provider "logOwl" not supported - Could not resolve host: executor with status code 0
- 0
- Functions
If you set logOwl as your log driver in
_APP_LOGGING_PROVIDER=logOwl
although docker exec appwrite doctor
says it's alright, the openruntimes-executor
container will throw the error below whenever you try to deploy a function
Fatal error: Uncaught Exception: Provider "logOwl" not supported. in /usr/local/app/http.php:68
Stack trace:
#0 /usr/local/vendor/utopia-php/registry/src/Registry/Registry.php(75): {closure}()
#1 /usr/local/app/http.php(131): Utopia\Registry\Registry->get('logger')
#2 /usr/local/vendor/utopia-php/framework/src/Transaction.php(36): {closure}(Object(Utopia\Registry\Registry))
#3 /usr/local/app/http.php(1320): Utopia\Transaction->getResource('logger')
#4 [internal function]: {closure}(Object(Swoole\Http\Request), Object(Swoole\Http\Response))
#5 {main}
thrown in /usr/local/app/http.php on line 68
[2023-09-02 17:00:50 @1.0] WARNING Channel::~Channel() (ERRNO 10003): channel is destroyed, 1 consumers will be discarded
Disabling the logOwl driver seems to solve the problem for now.
It seems like that openruntimes-executor
want the value to be lowercase
Try again but with lowercase
_APP_LOGGING_PROVIDER=logowl
Recommended threads
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...
- Project in AppWrite Cloud doesn't allow ...
I have a collection where the data can't be opened. When I check the functions, there are three instances of a function still running that can't be deleted. The...
- Get team fail in appwrite function
I try to get team of a user inside appwrite function, but i get this error: `AppwriteException: User (role: guests) missing scope (teams.read)` If i try on cl...