shubhamraj-git commented on PR #48102:
URL: https://github.com/apache/airflow/pull/48102#issuecomment-2746117751

   @jscheffl Yes, it seems like editing for schema and extra is not handled 
right via API. Payloads are going right.
   
   I created a connection.
   ```
   {
       "conn_type": "generic",
       "connection_id": "test_conn",
       "description": "this is demo",
       "extra": "{\n  \"key\": \"value\"\n}",
       "schema": "schema"
   }
   ```
   
   Now I edited it with 
   ```
   {
       "conn_type": "generic",
       "connection_id": "test_conn",
       "description": "this is demo - edited",
       "extra": "{\n  \"key\": \"value-edited\"\n}",
       "schema": "schema-edited"
   }
   ```
   
   But I still get
   ```
   {
       "connection_id": "test_conn",
       "conn_type": "generic",
       "description": "this is demo - edited",
       "host": null,
       "login": null,
       "schema": "schema",
       "port": null,
       "password": null,
       "extra": "{\"key\": \"value\"}"
   }
   ```


-- 
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]

Reply via email to