ryanahamilton opened a new issue #14481:
URL: https://github.com/apache/airflow/issues/14481


   When testing the following two endpoints, I get different results for the 
array of tags. The former returns an array of empty objects (that are missing 
`name` keys). It should be identical to the response of the latter endpoint.
   
   `/api/v1/dags/{dag_id}/details`:
   
   ```json
   {
     
     "tags": [
       {},
       {}
     ],
   }
   ```
   
   `/api/v1/dags/{dag_id}`:
   
   ```json
   {
   
     "tags": [
       {
         "name": "example"
       },
       {
         "name": "example2"
       }
     ]
   }
   ```


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


Reply via email to