I have another issue in 1.0 that I am not sure how to classify. I have a download zip file task at the beginning of my flow. I have used BeautifulSoup to grab the dynamic zip file urls from the landing page and convert them into class called Page(). Then these links are exposed as a list of links. The first line of my Flow() is page = Page(). The problem is it seems this "page" object is cached as the newly posted links are not processed at all. It appears this is default behavior but How do I turn it off or bypass it? I need a new page = Page() object every time the flow runs...
The flow is created with the following:
result=PrefectResult(),storage=Local()
Should I remove those?