You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/02/26 15:00:12 UTC

[GitHub] [airflow] ryanahamilton opened a new issue #14481: DAG /details endpoint returning empty array objects for DAG tags

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:
users@infra.apache.org



[GitHub] [airflow] ryanahamilton commented on issue #14481: DAG /details endpoint returning empty array objects

Posted by GitBox <gi...@apache.org>.
ryanahamilton commented on issue #14481:
URL: https://github.com/apache/airflow/issues/14481#issuecomment-786704282


   Upon further investigation, this endpoint's issues are not just limited to `tags`. Updated title/description.


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [airflow] ephraimbuddy closed issue #14481: DAG /details endpoint returning empty array objects

Posted by GitBox <gi...@apache.org>.
ephraimbuddy closed issue #14481:
URL: https://github.com/apache/airflow/issues/14481


   


----------------------------------------------------------------
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:
users@infra.apache.org