azure-functions-python-worker
azure-functions-python-worker copied to clipboard
Python worker for Azure Functions.
I think #1029 might need to be re-opened. - Timestamp: 2022-06-16 -> 2022-06-17 - Function App name: anomalyScoring - Function name(s) (as appropriate): there is only one on that function...
Hey, i am running into issues with python azure function under VSCode. FYI the same example I will present is working fine with JS. Set up: Mac M1 Big Sur...
When deploying FastAPI using the ASGI worker, The `/docs` endpoint only seems to work for "anonymous" functions. Is there anything I can do to use it with authlevel "function"? Question...
# Description of the problem: I created a virtual environment with python 3.10, unaware at the time that it can be no higher than 3.9. When trying to start the...
I was running the API for several months. I tried to update the API today and pushed the new code to Azure and ended up with http 500 error codes....
I am trying to connect the FastAPI based Functions app to Azure File Storage through the Output bindings. ``` { "name": "mntbl", "type": "table", "tableName": "maintable", "partitionKey": "district_id", "rowKey": "ri_id",...
When logging.exception("Simple Exception") then it should show up in the `exceptions` table in App Insights. It only shows up when it is explicitly raised. If we want to show 403,404...
### Investigative information ###### Please provide the following: Investigate Python language worker tests failures in Functions V4 for 8/5/22 Failing test cases: **test_sql_output_and_input test_queue_return** Here is the link to the...
## Description Fixes # --- ### PR information - [ ] The title of the PR is clear and informative. - [ ] There are a small number of commits,...
When calling logger.info, debug, warning etc methods you should use lazy string formatting https://docs.python.org/3/howto/logging.html#optimization This is because the strings will be formatted regardless of whether the logging message is captured....