cvetelinandreevdreamix

Results 24 comments of cvetelinandreevdreamix

@cicdw This is what I wrote initially. Thinking of it, why would this stop me migrate ... I'll have to check again the example project I provided above. I'll get...

Reading more carefully my initial comment it says that the deployment doesn't work if I don't use the slug. The main issue is the error ModuleNotFoundError: No module named 'common'...

Hi @cicdw . I confirm the issue is still there after upgrading the sample project above to prefecthq/prefect:3.2.13-python3.10. Let me know If you need assistance from my side. What I...

How do I do that? The flow gets stuck before executing the @flow function. This is the log if the default worker ``` 2025-03-21 20:54:15 18:54:15.030 | DEBUG | prefect.profiles...

It seems that I'm the only one experience this issue. Maybe it is my dev setup? I'm wondering if somebody else managed to run the sample project, deploy and run...

The issue is that the function in the common module is not marked with @task annotation. After adding the annotation the error Module not found 'common' does not appear and...

My case was calling one of the common functions too often, so creating a task for every call was an overhead. You can skip this by calling common_function_annotated_with_task.fn(...)