You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2019/12/30 03:51:00 UTC

[jira] [Commented] (AIRFLOW-5590) Add 'run_id' to trigger DAG run API response as a field

    [ https://issues.apache.org/jira/browse/AIRFLOW-5590?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17005116#comment-17005116 ] 

ASF GitHub Bot commented on AIRFLOW-5590:
-----------------------------------------

stale[bot] commented on pull request #6514: AIRFLOW-5590: Add dagrun_id to the response of experimental API on trigger.
URL: https://github.com/apache/airflow/pull/6514
 
 
   
 
----------------------------------------------------------------
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


> Add 'run_id' to trigger DAG run API response as a field
> -------------------------------------------------------
>
>                 Key: AIRFLOW-5590
>                 URL: https://issues.apache.org/jira/browse/AIRFLOW-5590
>             Project: Apache Airflow
>          Issue Type: Improvement
>          Components: api
>    Affects Versions: 1.10.5
>            Reporter: Anton Kumpan
>            Assignee: Anton Kumpan
>            Priority: Major
>
> Idea is the same as in AIRFLOW-4482
> Currently API response looks like this:
> {code:json}
> {
> 'execution_date': '2019-05-08T07:03:09+00:00', 
> 'message': 'Created <DagRun dag_id @ 2019-05-08 07:03:09+00:00: manual__2019-05-08T07:03:09+00:00, externally triggered: True>'
> }
> {code}
>  
> It would be nice to add run_id as a separate field, so that response will look like:
> {code:json}
> {
> 'run_id': 'manual__2019-05-08T07:03:09+00:00',
> 'execution_date': '2019-05-08T07:03:09+00:00', 
> 'message': 'Created <DagRun dag_id @ 2019-05-08 07:03:09+00:00: externally triggered: True>'
> }
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)