bbovenzi commented on code in PR #22804:
URL: https://github.com/apache/airflow/pull/22804#discussion_r846142018
##########
airflow/www/static/js/ti_log.js:
##########
@@ -140,6 +140,24 @@ function autoTailingLog(tryNumber, metadata = null,
autoTailing = false) {
));
});
}
+
+function setDownloadUrl(tryNumber) {
+ if (!tryNumber) {
+ // default to the currently selected tab
+ tryNumber = $('#ti_log_try_number_list .active a').data('try-number');
+ }
+ const query = new URLSearchParams({
+ dag_id: dagId,
+ task_id: taskId,
+ execution_date: executionDate,
+ try_number: tryNumber,
+ metadata: 'null',
+ format: 'file'
Review Comment:
```suggestion
format: 'file',
```
That is what is causing the static check to fail.
--
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]