guptakumartanuj commented on a change in pull request #5037: [AIRFLOW-4237]
Including Try Number of Task in Gantt Chart
URL: https://github.com/apache/airflow/pull/5037#discussion_r297687670
##########
File path: airflow/www/static/js/gantt-chart-d3v2.js
##########
@@ -32,11 +32,12 @@ d3.gantt = function() {
.html(function(d) {
var s = ""
s += "<div class='row'>";
- s += "<div class='col-md-3'>start:<br/>end:<br/>duration:</div>"
+ s += "<div
class='col-md-3'>start:<br/>end:<br/>duration:<br/>try_count:</div>"
s += "<div class='col-md-9'><span style='color: #AAA'> "
s += d.isoStart + "<br/>";
s += d.isoEnd + "<br/>";
s += convertSecsToHumanReadable(d.duration) + "<br/>";
+ s += d.try_count + "<br/>";
Review comment:
yeah. Making the necessary changes for the same. Thanks for the
understanding.
----------------------------------------------------------------
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]
With regards,
Apache Git Services