potiuk commented on issue #13597:
URL: https://github.com/apache/airflow/issues/13597#issuecomment-758831582
OK. Sorry I have not seen your answer - good that we know about the
duplication. That should be easy fix :).
And I think I know where the problem is. There is one more place I missed in
`views.py`:
```
def process_form(self, form, is_created):
"""Process form data."""
formdata = form.data
if formdata['conn_type'] in ['jdbc', 'google_cloud_platform',
'grpc', 'yandexcloud', 'kubernetes']:
extra = {key: formdata[key] for key in self.extra_fields if key
in formdata}
form.extra.data = json.dumps(extra)
```
Both are to be fixed in 2.0.1 then !
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]