Kevin Grismore

Results 5 comments of Kevin Grismore

@snowdrop4 I think this is a fair point. Docs will be updated in the next release to word that section slightly differently. In-process subflow runs can be concurrent and take...

@povisenko Can you set the logging level environment variable `PREFECT_LOGGING_LEVEL="DEBUG"` where your worker is running? This'll log the constructed task run request, which might help us track down where the...

Do you build images for your deployments? Any way to find out exactly what your dependencies looked like before this started and roll back to that?

When you return a `PrefectFuture` from a flow, you get a `State` and you can call `.result()` on it. ```python @task def add(a, b): return a + b @flow def...