conductor
conductor copied to clipboard
Variables are cleared once the WAIT task is started
Bug description:
Variables are cleared once the WAIT task is started.
Details: Conductor version: 3.11.0 Workflow definition:
{
"name": "Set_Variable_Workflow",
"description": "Set a value to a variable and wait",
"version": 1,
"tasks": [
{
"name": "Set_Name",
"taskReferenceName": "Set_Name",
"type": "SET_VARIABLE",
"inputParameters": {
"name": "Foo"
}
},
{
"name": "Test_Wait",
"taskReferenceName": "Test_Wait",
"type": "WAIT",
"inputParameters": {
"duration": "30 s"
}
}
],
"restartable": true,
"ownerEmail":"[email protected]",
"workflowStatusListenerEnabled": true,
"schemaVersion": 2
}
Steps to reproduce the behavior:
- Create provided above workflow definition
- Start a new workflow for the
Set_Variable_Workflowdefinition - Open the workflow execution page
- Check the
Variables
Actual behavior: No variables exist.
Expected behavior:
The variable name with the value Foo, created by the Set_Name task exists.
Screenshots:

Hi @vzubyk , Thanks for reporting this. I am able to reproduce this. We will raise a fix for this.
HI @vzubyk , PR for the fix https://github.com/Netflix/conductor/pull/3221