Zanie Blue

Results 2920 comments of Zanie Blue

Thanks! Unfortunately I cannot reproduce this. Can you run this with a debugger and share the value `self.data` (`State.data`) that is throwing this error?

Ah `ScriptError` requires a `path` on `__init__` which means that it cannot be pickled/unpickled. If you delete this run your problem should be resolved. Separately, we've removed this behavior from...

Thanks for the issue! This actually looks like a bug with Holoviews. We may be able to find a way to prevent Pydantic from validating this value, but it may...

1. I'm not sure which validator is being fired here. Can you reproduce your issue with this? ```python from pydantic import BaseModel, Field class Data(BaseModel): value: Any = None class...

It looks like here we are zipping `batches` and the upstream tasks and it is being limited to 4 because `"done"` is four characters long.

I think this will depend on detecting that it was a secret-ref in the first place? I do not think we want to create a new secret-ref for each job.

Oh totally, you can always override our behavior with a customization e.g. ```python from prefect.infrastructure import KubernetesJob from prefect.settings import temporary_settings, PREFECT_API_KEY with temporary_settings({PREFECT_API_KEY: "foo"}): job = KubernetesJob( command=["bash", "-c",...

Note this will throw a timeout error in the flow when retrieving the result from the task but it won't actually fail the task as timed out. I think we...

This is a duplicate of https://github.com/PrefectHQ/prefect/issues/5853 — although this one uses our new template so I will close the other.

@abrookins I believe I do not have the permissions to fix this on the internal backlog.