-
Type:
Bug
-
Resolution: Timed out
-
Priority:
Low
-
Minor
Issue Summary
When updating board column configuration - "Set a constraint" - the webhook payload for the board configuration updated sometimes contains old value in the "columnConfig.constraintType" field
This is reproducible on Data Center: (no)
Steps to Reproduce
- configure webhook for board-configuration changed
- change the board columns configuration "Set a constraint" to different value
Expected Results
the webhook payload will contain the current value for the column constraint in the "constraintType" field
{
...
"columnConfig": {
"columns": [
...
],
"constraintType": "issueCount"
},
}
Actual Results
sometimes the "constraintType" contains previous value
{
...
"columnConfig": {
"columns": [
...
],
"constraintType": "none"
},
}
The below exception is thrown in the xxxxxxx.log file:
...
Workaround
Currently there is no known workaround for this behavior. A workaround will be added here when available