The flow data that can be loaded via the REST API (https://api.flowground.net/docs/v2/#retrieve-a-flow-by-id) contains the properties data.attributes.status and data.attributes.current_status. In my case both have the value "active". What is the difference between these two properties?
Flowground REST-API: Difference between the flow properties status and current_status
69 views Asked by Stephan Häußler At
1
data.attributes.statusthis can be active and inactive. This is basically how we want a flow to be.data.attributes.current_statusshows the status as is.For example:
You have an active flow. It has both
data.attributes.status&data.attributes.current_statusas active.Then you stop the flow and for some period of time (while the pods still running and then shuts down), it will show
data.attributes.statusas inactive anddata.attributes.current_status- active. After Admiral does it's job, the status changes to inactive on bothdata.attributes.status&data.attributes.current_status.