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
Exception while executing function: Functions.V1BlobTrigger Result: Failure Exception: AttributeError: module 'names_dataset' has no attribute 'NameDataset' Stack: File "/azure-functions-host/workers/python/3.11/LINUX/X64/azure_functions_worker/dispatcher.py", line 505, in _handle__invocation_request call_result = await self._loop.run_in_executor( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/azure-functions-host/workers/python/3.11/LINUX/X64/azure_functions_worker/dispatcher.py", line 778, in _run_sync_func return ExtensionManager.get_sync_invocation_wrapper(context, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/azure-functions-host/workers/python/3.11/LINUX/X64/azure_functions_worker/extension.py", line 215, in _raw_invocation_wrapper result = function(**args) ^^^^^^^^^^^^^^^^ File "/home/site/wwwroot/V1BlobTrigger/__init__.py", line 16, in main merged_df, manual_review = utils.process_data(df) ^^^^^^^^^^^^^^^^^^^^^^ File "/home/site/wwwroot/utils/__init__.py", line 6, in process_data df = filter_individuals(df) ^^^^^^^^^^^^^^^^^^^^^^ File "/home/site/wwwroot/utils/pipeline.py", line 53, in filter_individuals nd = names_dataset.NameDataset() ^^^^^^^^^^^^^^^^^^^^^^^^^
Unable to import NameDataset function from names_dataset package although import names_dataset works fine. The code works fine in local environment. getting this issue in Azure cloud. what could be the reason for this?
The text was updated successfully, but these errors were encountered:
Exception while executing function: Functions.V1BlobTrigger Result: Failure Exception: AttributeError: module 'names_dataset' has no attribute 'NameDataset' Stack: File "/azure-functions-host/workers/python/3.11/LINUX/X64/azure_functions_worker/dispatcher.py", line 505, in _handle__invocation_request call_result = await self._loop.run_in_executor( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/azure-functions-host/workers/python/3.11/LINUX/X64/azure_functions_worker/dispatcher.py", line 778, in _run_sync_func return ExtensionManager.get_sync_invocation_wrapper(context, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/azure-functions-host/workers/python/3.11/LINUX/X64/azure_functions_worker/extension.py", line 215, in _raw_invocation_wrapper result = function(**args) ^^^^^^^^^^^^^^^^ File "/home/site/wwwroot/V1BlobTrigger/__init__.py", line 16, in main merged_df, manual_review = utils.process_data(df) ^^^^^^^^^^^^^^^^^^^^^^ File "/home/site/wwwroot/utils/__init__.py", line 6, in process_data df = filter_individuals(df) ^^^^^^^^^^^^^^^^^^^^^^ File "/home/site/wwwroot/utils/pipeline.py", line 53, in filter_individuals nd = names_dataset.NameDataset() ^^^^^^^^^^^^^^^^^^^^^^^^^
Unable to import NameDataset function from names_dataset package although import names_dataset works fine. The code works fine in local environment. getting this issue in Azure cloud. what could be the reason for this?
The text was updated successfully, but these errors were encountered: