File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
workers/azure_functions_worker Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -82,10 +82,10 @@ def load_binding_registry() -> None:
8282 DEFERRED_BINDING_REGISTRY = clients .get_binding_registry ()
8383 except ImportError :
8484 logger .debug ('Base extension not found. '
85- 'Python version: 3.%s, Sys path: %s, '
86- 'Sys Module: %s, python-packages Path exists: %s.' ,
87- sys .version_info .minor , sys .path ,
88- sys .modules , os .path .exists (CUSTOMER_PACKAGES_PATH ))
85+ 'Python version: 3.%s, Sys path: %s, '
86+ 'Sys Module: %s, python-packages Path exists: %s.' ,
87+ sys .version_info .minor , sys .path ,
88+ sys .modules , os .path .exists (CUSTOMER_PACKAGES_PATH ))
8989
9090
9191def get_binding (bind_name : str ,
Original file line number Diff line number Diff line change 3838 PYTHON_SCRIPT_FILE_NAME ,
3939 PYTHON_SCRIPT_FILE_NAME_DEFAULT ,
4040 PYTHON_THREADPOOL_THREAD_COUNT ,
41- PYTHON_THREADPOOL_THREAD_COUNT_DEFAULT ,
4241 PYTHON_THREADPOOL_THREAD_COUNT_MIN ,
4342 REQUIRES_ROUTE_PARAMETERS
4443)
Original file line number Diff line number Diff line change 55import asyncio
66import importlib
77import socket
8- import sys
98from typing import Dict
109
1110from azure_functions_worker .constants import (
You can’t perform that action at this time.
0 commit comments