File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def load_binding_registry() -> None:
40
40
raise AttributeError ('BINDING_REGISTRY is None. Sys Path:'
41
41
f'{ sys .path } , Sys Module: { sys .modules } ,'
42
42
f'python-packages Path exists: '
43
- f'{ os .path .exists (CUSTOMER_PACKAGES_PATH )} ' )
43
+ f'{ os .path .exists (CUSTOMER_PACKAGES_PATH )} . ' )
44
44
45
45
# The base extension supports python 3.8+
46
46
if sys .version_info .minor >= BASE_EXT_SUPPORTED_PY_MINOR_VERSION :
@@ -51,11 +51,11 @@ def load_binding_registry() -> None:
51
51
DEFERRED_BINDING_REGISTRY = clients .get_binding_registry ()
52
52
except ImportError :
53
53
logger .info ('Base extension not found. '
54
- f'Python version: 3.{ sys .version_info .minor } '
54
+ f'Python version: 3.{ sys .version_info .minor } , '
55
55
f'Sys path: { sys .path } , '
56
56
f'Sys Module: { sys .modules } , '
57
57
f'python-packages Path exists: '
58
- f'{ os .path .exists (CUSTOMER_PACKAGES_PATH )} ' )
58
+ f'{ os .path .exists (CUSTOMER_PACKAGES_PATH )} . ' )
59
59
60
60
61
61
def get_binding (bind_name : str ,
Original file line number Diff line number Diff line change @@ -701,7 +701,7 @@ def index_functions(self, function_path: str):
701
701
702
702
logger .info (
703
703
'Successfully processed FunctionMetadataRequest for '
704
- 'functions: %s. Deferred bindings enabled: %s' , " " .join (
704
+ 'functions: %s. Deferred bindings enabled: %s. ' , " " .join (
705
705
indexed_function_logs ),
706
706
self ._functions .deferred_bindings_enabled ())
707
707
You can’t perform that action at this time.
0 commit comments