tseruga commented on issue #64950: URL: https://github.com/apache/airflow/issues/64950#issuecomment-4215715434
You can use these steps to update old connections with the expected null extra field: ``` airflow connections export --file-format json connections_export.json sed -E 's/"extra":[[:space:]]*""/"extra": null/g' connections_export.json > connections_fixed.json airflow connections import --overwrite connections_fixed.json ``` Essentially, `extra: ""` is now invalid, but `extra: null` is valid. -- 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]
