warnings.warn( /usr/local/server/src/function/runtime-env/lib/python3.9/site-packages/urllib3/connectionpool.py:1099: InsecureRequestWarning: Unverified HTTPS request is being made to host 'cloud.appwrite.io'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#tls-warnings
Are you calling client.set_self_signed()?
Yes
client
.set_endpoint(os.environ['APPWRITE_FUNCTION_ENDPOINT'])
.set_project(os.environ['APPWRITE_FUNCTION_PROJECT_ID'])
.set_key(os.environ['APPWRITE_FUNCTION_API_KEY'])
.set_self_signed(True)
That's the problem. Remove it
Oh okayy. Thank you so much.
[SOLVED] Cloud function logs warnings
Recommended threads
- The file size is either not valid or exc...
Hello, I am receiving the following error when I am trying to deploy a function from my local. ``` > appwrite push functions --function-id xxxxxxxxx ℹ Info: Va...
- How does sending email from the Appwrite...
I noticed that the pricing page mentions “Messages – 1000 per month” for the Free plan. Is this different from sending emails? When I try to send an email usin...
- Appwrite functions dart runtime (3.7 sup...
It seems that currently Appwrite functions only support Dart runtime to 3.5, for my code I need dart 3.7. Is there any plan to support Dart3.7 runtime soon. Is ...