After upgrading to 1.8.0, I ran the starter_for_flutter and tested the ping. It failed with a "Server Error". I tried this again on my production instance (1.6.1) and it failed with a "Invalid document structure: Unknown attribute: pingCount".
I can't find anything in the docs. Is this a known issue?
1.8.0 results:
{
"message": "Server Error",
"code": 500,
"type": "general_unknown",
"version": "1.8.0",
"file": "/usr/src/code/vendor/utopia-php/database/src/Database/Database.php",
"line": 4896,
"trace": [
{
"file": "/usr/src/code/vendor/utopia-php/database/src/Database/Adapter.php",
"line": 385,
"function": "Utopia\\Database\\{closure}",
"class": "Utopia\\Database\\Database",
"type": "->",
"args": []
},
{
"file": "/usr/src/code/vendor/utopia-php/database/src/Database/Database.php",
"line": 1214,
"function": "withTransaction",
"class": "Utopia\\Database\\Adapter",
"type": "->",
"args": [
{}
]
},
{
"file": "/usr/src/code/vendor/utopia-php/database/src/Database/Database.php",
"line": 4730,
"function": "withTransaction",
"class": "Utopia\\Database\\Database",
"type": "->",
"args": [
{}
]
},
{
"file": "/usr/src/code/app/controllers/general.php",
"line": 1584,
"function": "updateDocument",
"class": "Utopia\\Database\\Database",
"type": "->",
"args": [
{
(...trimmed...)
1.6.1 result:
{
"message": "Invalid document structure: Unknown attribute: \"pingCount\"",
"code": 400,
"type": "document_invalid_structure",
"version": "1.6.1"
}
Recommended threads
- Function for long running task (other 60...
My function need long running other 60 seconds. But async mode return empty body. How to deal with that please ?
- OAuth2 Provider is disabled automaticall...
Hi everyone, I'm using self-host Appwrite 1.7.4. I can setup OAuth2 with Google successfully, however the provider is disabled automatically after one day witho...
- Attach Dart debugger for locally deploye...
Hello there, I was wondering if it is possible to attach debugger to dart function, that I run locally. It would make development much easier :-). Thank you.