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
- Function domain not available
Hello, even tho in docs you clearly describe that every function has its domain, I can not see it anywhere in any of my projects. How do I reveal the url of th...
- 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...
- After a GET request is passed to functio...
Create execution in the console can normally retrieve the get parameters。WHy?