Evan
Evan
Tracking this in this issue: [Azure Functions Reference Documentation is out of date for azure.functions · Issue #59 · Azure/azure-functions-pyfx-planning (github.com)](https://github.com/Azure/azure-functions-pyfx-planning/issues/59)
Closing in favor of: #1631
The reasoning behind the fix is that threads initiated by a user do not inherently contain a running event loop. Therefore, the worker validates whether threads have a running event...
This can be done inside a loop, here is a sample that I have tested with: ``` import azure.functions as func import threading import logging app = func.FunctionApp(http_auth_level=func.AuthLevel.ANONYMOUS) @app.route(route="http_trigger") def...
Hi, following up on this: You would likely need to instrument your logs using something such as the [OpenCensus Python SDK.](https://learn.microsoft.com/en-us/azure/azure-monitor/app/opencensus-python) You could take advantage of custom_dimensions and add a...