Lana Dann
03/16/2022, 4:55 PMKevin Kho
03/16/2022, 4:58 PMflow.run()
does not respect storage or RunConfig. What are you imagining? Some easier way to debug? Cuz you can do something like
storage = S3(...)
storage.build()
The registration calls the build but you can do it independently lolKyle McChesney
03/16/2022, 5:00 PMflow.storage = S3(storage_bucket)
flow.run_config = ECSRun(image=image)
flow.serialize(build=True)
I’ve seen this catch issues with the flow, before actually registering itKevin Kho
03/16/2022, 5:01 PMLana Dann
03/16/2022, 5:01 PM