Taragolis commented on issue #37532:
URL: https://github.com/apache/airflow/issues/37532#issuecomment-1953774383
At that moment (and historically) Airflow save variables (both in UI and
CLI) as key-value storage, and if the values is a valid python dictionary than
it serialize as json object
```json
{
"Variable 1": "Values"
"Variable 2": {
"spam": "egg"
}
}
```
Without changing the format it is not possible to achieve add description in
other words someone need to introduce `version 2` of variables dump format and
Airflow should able to work with both of them for backward compatibility.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]