You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/07/14 11:20:19 UTC

[GitHub] [arrow] amol- commented on a change in pull request #10650: ARROW-13058: This is a draft to provide save-report

amol- commented on a change in pull request #10650:
URL: https://github.com/apache/arrow/pull/10650#discussion_r669520388



##########
File path: dev/archery/archery/crossbow/cli.py
##########
@@ -233,6 +233,29 @@ def latest_prefix(obj, prefix, fetch):
     click.echo(latest.branch)
 
 
+@crossbow.command()
+@click.argument('job-name', required=True)
+@click.pass_obj
+def save_report_data(obj, job_name):
+    """
+    Just print there the state of the job
+    """
+    output = obj['output']
+    queue = obj['queue']
+    if fetch:
+        queue.fetch()
+
+    job = queue.get(job_name)
+    report = EmailReport(

Review comment:
       I guess this one should be `JsonReport`




-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org