Zanie Blue

Results 2922 comments of Zanie Blue

Perhaps a duplicate of https://github.com/PrefectHQ/prefect/issues/7043

@pleek91 is this resolved by your pull request for #7043?

Thanks @andreas-ntonas! This makes sense to me, I think the type can probably just become `Union[str, UUID]` like some of our other deployment interfaces. Can you please update this to...

Replaced by https://github.com/PrefectHQ/prefect/issues/7319

Thanks again for your work on this. Hopefully https://github.com/PrefectHQ/prefect/pull/6948 addresses your issue. I hope to solve the locking issue for multithreaded loops more broadly in the future as well.

This has caused us some weird problems at Prefect as well. Most recently, I've worked around it with funky usage of a [cancel scope](https://github.com/PrefectHQ/prefect/pull/7334/files#diff-b39d26165689b953feaede20079f706aa1e2af8e5ba77a8cc012540641a6255dR99-R116) but this took a lot of...

Hm, they do say > If you are an ecosystem maintainer and are interested in integrating with Dependabot, and are willing to help provide the expertise necessary to build and...

I've got a rough patch for this fwiw ```python YappiYFuncStat = yappi.YFuncStat class YFuncStat(YappiYFuncStat): def __setattr__(self, name, value): if isinstance(value, str) and value.startswith("/"): value = trim_sys_paths(value) super().__setattr__(name, value) yappi.YFuncStat =...

I'd be happy to contribute, but the methods here for detecting a path and trimming values seems sloppy. I imagine you wouldn't want this implemented on `__setattr__` as well.