-
Notifications
You must be signed in to change notification settings - Fork 16.8k
Closed
Labels
Description
Apache Airflow version
2.2.3
What happened
When
Variable.set(
self.variable_name,
self.variable_value,
True,
None
)
is used, Airflow variable contains single quotes instead of double one.
Current workaround is to use:
Variable.set(
self.variable_name,
json.dumps(self.variable_value,indent=2),
False,
None
)
What you expected to happen
Double quotes instead of single ones in variable value
How to reproduce
No response
Operating System
RHEL 8
Versions of Apache Airflow Providers
No response
Deployment
Virtualenv installation
Deployment details
No response
Anything else
No response
Are you willing to submit PR?
- Yes I am willing to submit a PR!
Code of Conduct
- I agree to follow this project's Code of Conduct
Reactions are currently unavailable