Closed jonscherman closed 3 years ago
When I write in a workflow that :
{ "id": "accesstoken", "type": "template", "store": "BACKEND", "value": "{provider}_TOKEN" }
The message sent in the worker queue don't take the "store" attribute : {"id":"accesstoken","type":"string","value":"SPEECHMATICS_TOKEN"}
It should be this message instead : {"id":"accesstoken","store":"BACKEND","type":"string","value":"SPEECHMATICS_TOKEN"}
Thus, the token value is not found in the store because of this missing "store" attribute.
I put this issue in ex_step_flow project : https://github.com/media-io/ex_step_flow/issues/87
When I write in a workflow that :
The message sent in the worker queue don't take the "store" attribute : {"id":"accesstoken","type":"string","value":"SPEECHMATICS_TOKEN"}
It should be this message instead : {"id":"accesstoken","store":"BACKEND","type":"string","value":"SPEECHMATICS_TOKEN"}
Thus, the token value is not found in the store because of this missing "store" attribute.