sudharsan2020

Results 7 comments of sudharsan2020

@jsquire Can you please confirm the status of the request? This is very critical for our business applications running on Service bus trigger Python SDK.Thanks

@YunchuWang Do you've any plans to release this feature shortly? Please let me know.

@Kroppeb Have you tried this? We are using `Azure Artifacts` to host private repos. The below config is from our `Pipfile` ``` [[source]] url = "https://{USER_NAME}:{PASSWORD}@pkgs.dev.azure.com/mYoRD/_packaging/lib-python%40Local/pypi/simple/" verify_ssl = false name...

@gkeuccsr Thanks for the awesome workaround. Is there any way where we can plug this code directly into the snippet? ``` exporter = AzureMonitorLogExporter( connection_string=os.environ["My__Azure__ApplicationInsights__ConnectionString"], ) self.logger_provider.add_log_record_processor(BatchLogRecordProcessor( exporter, schedule_delay_millis=EXPORT_INTERVAL_IN_MS, ))...

> Temporary solution that worked for me is pinning pipenv to `2022.1.8`. > > ```shell > > pip install pipenv==2022.1.8 > > pipenv lock > ``` This worked for me...

Please check this too https://github.com/Azure/azure-functions-python-worker/issues/1291

@sdg002 You can use these settings to override host.json settings in your Function app. https://dev.to/massimobonanni/azure-functions-tips-override-the-hostjson-settings-21mi This worked for us