Kevin Hu
07/10/2025, 2:52 PMuv run python -m prefect.engine
i know it's trying to run the flow because if the script is not there it throws an error. but it never actually executes my flow.Nate
07/10/2025, 3:29 PMKevin Hu
07/10/2025, 8:54 PMNate
07/10/2025, 8:57 PMKevin Hu
07/10/2025, 8:58 PMfrom prefect import flow
from prefect.logging import get_run_logger
@flow
def test_flow():
logger = get_run_logger()
<http://logger.info|logger.info>("Hello from ECS!!")
if __name__ == "__main__":
test_flow()
Kevin Hu
07/10/2025, 8:58 PMNate
07/10/2025, 8:59 PMKevin Hu
07/10/2025, 9:00 PMNate
07/10/2025, 9:00 PMKevin Hu
07/10/2025, 9:00 PMKevin Hu
07/11/2025, 3:28 PMPREFECT_API_ENABLE_HTTP2
to false makes it work now.Nate
07/12/2025, 3:18 PM