Hi all
I have not seen this problem posted anywhere else but I have a workflow with 2 python tools in it. If I cache the one python tool (the earlier one in the process), the second python runs the code of the cached tool.
To give an example similar to what i am doing, the first python tool is pulling a list of products from an API. The next python tool will then call a different API to get all transactions for each product. The problem is if I cache the this python tool that pulls all the products, the next python tool which is supposed to pull all the transactions suddenly changes and becomes the first python tool in that it pulls all the products.
The code is completely different between the two tools, so there should be no way for the second tool to be able to run the code of the first tool.
What is even weirder is if I save to the server at this point, then when I run the workflow on the server, the second python tool is still a clone of the first python tool and provides the wrong information. Has anyone else come across this?
