Hi team, I have a job that uses `with S3(run=self...
# ask-metaflow
c
Hi team, I have a job that uses
with S3(run=self, prefix=prefix) as s3
to store data on S3 in step A. In Step B, we load it from the same location. Step A succeeded and step B failed. I am then running resume. It looks when I do that, Step B cannot find the previous artifacts (I assume they were stored under the unseccesful run's ID rather than the resumed run's ID). Am I doing something wrong, do I need to use something else than self in cases like this? Or is this expected to work and I might have another issue somewhere?
1