You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and line func_args: typing.Dict[str, object] = {}, is troubling me, because code initializes default argument with mutable type. AFAIK that can cause a memory leak in general (https://docs.python-guide.org/writing/gotchas/#mutable-default-arguments), but maybe in the context how it's run it's not a problem.
Not sure if this is a real problem. My app has some memory leaks, but it's not that painful, so I wasn't investigating it much.
The text was updated successfully, but these errors were encountered:
I'm referring to this code https://github.com/Azure/azure-functions-python-library/blob/dev/azure/functions/extension/app_extension_base.py#L65-L70
and line
func_args: typing.Dict[str, object] = {},
is troubling me, because code initializes default argument with mutable type. AFAIK that can cause a memory leak in general (https://docs.python-guide.org/writing/gotchas/#mutable-default-arguments), but maybe in the context how it's run it's not a problem.Not sure if this is a real problem. My app has some memory leaks, but it's not that painful, so I wasn't investigating it much.
The text was updated successfully, but these errors were encountered: