Soami Charan

Results 4 issues of Soami Charan

Implement timeout behavior same as official python Kubernetes client: https://github.com/kubernetes-client/python/blob/f414832bb05b946eb1758df12f08806b44dd315e/kubernetes/client/rest.py#L146 Following issues will be resolved by this fix: - https://github.com/tomplus/kubernetes_asyncio/issues/308 - https://github.com/PrefectHQ/prefect/issues/15259 - https://github.com/PrefectHQ/prefect/issues/14954

During `prefect deploy` command execution, if python environment is not setup prefect load entrypoint using code parsing by ast module. Now this is done by `_sanitize_and_load_flow` function which tries to...

### Bug summary I have a simple flow code which look like this ```python from prefect import flow from unknown_module import unknown_import def test_callback(params): print(params) print(unknown_import) def wrapper(*args, **kwargs): pass...

bug