Skip to content

Commit 204bdbc

Browse files
committed
a21: remove old references to afw
1 parent 2038019 commit 204bdbc

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

azure_functions_worker_v2/bindings/meta.py

+3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ def _check_http_input_type_annotation(bind_name: str, pytype: type,
3535
.check_type(pytype)
3636

3737
binding = get_binding(bind_name, is_deferred_binding)
38+
logger.info("VICTORIA -- inside _check_http_input_type_annotation. Bind name: %s, binding: %s, pytype: %s, check: %s", bind_name, binding, pytype, binding.check_input_type_annotation(pytype))
3839
return binding.check_input_type_annotation(pytype)
3940

4041

@@ -43,6 +44,7 @@ def _check_http_output_type_annotation(bind_name: str, pytype: type) -> bool:
4344
return HttpV2Registry.ext_base().ResponseTrackerMeta.check_type(pytype)
4445

4546
binding = get_binding(bind_name)
47+
logger.info("VICTORIA -- inside _check_http_output_type_annotation. Bind name: %s, binding: %s, pytype: %s, check: %s", bind_name, binding, pytype, binding.check_output_type_annotation(pytype))
4648
return binding.check_output_type_annotation(pytype)
4749

4850

@@ -68,6 +70,7 @@ def load_binding_registry() -> None:
6870

6971
if func is None:
7072
import azure.functions as func
73+
logger.info(f"VICTORIA ---- azure-functions import succeeded: {func.__file__}")
7174

7275
global BINDING_REGISTRY
7376
BINDING_REGISTRY = func.get_binding_registry() # type: ignore

azure_functions_worker_v2/loader.py

+1
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ def index_function_app(function_path: str):
168168
imported_module = importlib.import_module(module_name)
169169

170170
from azure.functions import FunctionRegister
171+
logger.info(f"VICTORIA ---- FunctionRegister import succeeded: {FunctionRegister}")
171172
app: Optional[FunctionRegister] = None
172173
for i in imported_module.__dir__():
173174
if isinstance(getattr(imported_module, i, None), FunctionRegister):

azure_functions_worker_v2/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33

4-
VERSION = '1.0.0a17'
4+
VERSION = '1.0.0a21'

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ build-backend = "setuptools.build_meta"
7878

7979
[tool.setuptools.packages.find]
8080
exclude = [
81-
'eng', 'tests', 'pack'
81+
'eng', 'tests', 'pack', 'azure_functions_worker'
8282
]
8383

8484
[tool.isort]

0 commit comments

Comments
 (0)