I'm getting an error executing my function. I'm not able to replicate this locally since I have to use a mock context. Is there a way to debug this kind of error?
Traceback (most recent call last): File "/usr/local/server/src/server.py", line 166, in handler return await action(logger, request) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/server/src/server.py", line 125, in action output["body"] = output.get("body", "") ^^^^^^^^^^ AttributeError: 'Context' object has no attribute 'get'
Recommended threads
- Inquiry: How to Reduce Cold Start Durati...
Hey! I was using Python for the function runtime, but after reading that Go has the fastest runtime, I switched my code over to Go. However, I'm still seeing co...
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...
- Unknown attribute type: varchar / text
Since the `string` type is deprecated I tried using `varchar` and `text` in some newer tables, but when running `appwrite pull tables && appwrite types ./src/li...