Reputation: 3
I have a workflow that queries table and when there is available data it calls another workflow and retrieves the relevant data and then pushes it to a web service. This is supposed run every 2 minutes.
Previously I had some test data in my variable bar, but I have long since removed it. Yet that data is getting pushed to the webservice constantly.
Why is the workflow still using the old test data?
Upvotes: 0
Views: 66
Reputation: 151
Did you refresh the subworkflow's properties? To do this, right-click on the Workflow node, and click refresh properties
Upvotes: 0
Reputation: 195
Best practice to auto-start workflows is to restart the workflow after every workflow change.
Upvotes: 0
Reputation: 504
Flowgear caches sub-workflows on first encounter when they execute from a parent workflow. If you've modified a sub-workflow and re-saved it, that change won't take effect in the calling workflow until you restart it.
Upvotes: 0