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
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
The logic to assure the ACI deployment name is within Azure's character limit specification applies len() to a UUID without first casting to a string. Issue is workers/container_instance.pyhere.
Traceback / Example
Traceback (most recent call last):
File "/usr/local/lib/python3.10/site-packages/prefect/workers/base.py", line 896, in _submit_run_and_capture_errors
result = await self.run(
File "/usr/local/lib/python3.10/site-packages/prefect_azure/workers/container_instance.py", line 571, in run
max_length=55 - len(flow_run.id),
TypeError: object of type 'UUID' has no len()
I would like to help contribute a pull request to resolve this!
The text was updated successfully, but these errors were encountered:
Expectation / Proposal
The logic to assure the ACI deployment name is within Azure's character limit specification applies
len()
to a UUID without first casting to a string. Issue isworkers/container_instance.py
here.Traceback / Example
The text was updated successfully, but these errors were encountered: