Changeset 190355 in webkit


Ignore:
Timestamp:
Sep 30, 2015, 10:49:44 AM (10 years ago)
Author:
jmarcell@apple.com
Message:

BuildbotQueueView.prototype._appendPendingRevisionCount should skip repositories that don't
have an associated trac instance.
https://bugs.webkit.org/show_bug.cgi?id=149673

Reviewed by Alexey Proskuryakov.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueueView.js:

(BuildbotQueueView.prototype._appendPendingRevisionCount): Skip repositories that don't
have an associated trac instance.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueueView.js

    r188890 r190355  
    9090            if (!latestProductiveRevisionNumber)
    9191                continue;
     92            if (!trac)
     93                continue;
    9294            if (!trac.latestRecordedRevisionNumber || trac.oldestRecordedRevisionNumber > latestProductiveRevisionNumber) {
    9395                trac.loadMoreHistoricalData();
  • trunk/Tools/ChangeLog

    r190354 r190355  
     12015-09-30  Jason Marcell  <jmarcell@apple.com>
     2
     3        BuildbotQueueView.prototype._appendPendingRevisionCount should skip repositories that don't
     4        have an associated trac instance.
     5        https://bugs.webkit.org/show_bug.cgi?id=149673
     6
     7        Reviewed by Alexey Proskuryakov.
     8
     9        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueueView.js:
     10        (BuildbotQueueView.prototype._appendPendingRevisionCount): Skip repositories that don't
     11        have an associated trac instance.
     12
    1132015-09-30  Daniel Bates  <dabates@apple.com>
    214
Note: See TracChangeset for help on using the changeset viewer.