Hi All, I am trying to use the `resume` functiona...
# ask-metaflow
m
Hi All, I am trying to use the
resume
functionality and the
S3
client in conjunction, but having some difficulty. It seems that to get the artefact from the original run (i.e.,
origin_run_id
) I need to manually make an instance of the
Run
class for this class and then pass that in. This works, but then I have to know a-priori that I want the artefact for the original run and it wasn't subsequently made in a step of the resumed run. I guess I could use some try/except logic to first check if the artefact exists for the resumed run and, if not, then try the original run. Just wondering what other people do when using these two bits of functionality together?