I have a class that inherits from Flow. When I run...
# prefect-community
a
I have a class that inherits from Flow. When I run the flow locally calling flow.run(), I can see log messages from the overridden run() method (which then calls the parent class's run() method). However, when running in Fargate, I do not see the log messages. Does flow.run() not get called?
j
When running with a Backend API (server/cloud) the CloudFlowRunner’s
run
method is called to run the flow https://github.com/PrefectHQ/prefect/blob/master/src/prefect/engine/cloud/flow_runner.py#L230
a
aha!