Changeset 252926 in webkit


Ignore:
Timestamp:
Nov 28, 2019, 8:03:35 AM (6 years ago)
Author:
aakash_jain@apple.com
Message:

Removed ENABLED_QUEUES logic from ews-app
https://bugs.webkit.org/show_bug.cgi?id=204683

Unreviewed minor fix.

  • BuildSlaveSupport/ews-app/ews/views/statusbubble.py:

(StatusBubble): Removed ENABLED_QUEUES.
(StatusBubble._build_bubbles_for_patch):
(StatusBubble._should_show_bubble_for_queue): Deleted.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py

    r252925 r252926  
    4242    ALL_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo', 'win',
    4343                  'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'jsc', 'jsc-armv7', 'jsc-mips', 'webkitperl', 'webkitpy', 'services']
    44     ENABLED_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo', 'win',
    45                       'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'jsc', 'jsc-armv7', 'jsc-mips', 'webkitperl', 'webkitpy', 'services']
    4644    # FIXME: Auto-generate the queue's trigger relationship
    4745    QUEUE_TRIGGERS = {
     
    250248        return True
    251249
    252     def _should_show_bubble_for_queue(self, queue):
    253         return queue in StatusBubble.ENABLED_QUEUES
    254 
    255250    def _queue_position(self, patch, queue, parent_queue=None):
    256251        # FIXME: Handle retried builds and cancelled build-requests as well.
     
    291286
    292287        for queue in StatusBubble.ALL_QUEUES:
    293             if not self._should_show_bubble_for_queue(queue):
    294                 continue
    295 
    296288            bubble = self._build_bubble(patch, queue, hide_icons)
    297289            if bubble:
  • trunk/Tools/ChangeLog

    r252925 r252926  
     12019-11-28  Aakash Jain  <aakash_jain@apple.com>
     2
     3        Removed ENABLED_QUEUES logic from ews-app
     4        https://bugs.webkit.org/show_bug.cgi?id=204683
     5
     6        Unreviewed minor fix.
     7
     8        * BuildSlaveSupport/ews-app/ews/views/statusbubble.py:
     9        (StatusBubble): Removed ENABLED_QUEUES.
     10        (StatusBubble._build_bubbles_for_patch):
     11        (StatusBubble._should_show_bubble_for_queue): Deleted.
     12
    1132019-11-28  Aakash Jain  <aakash_jain@apple.com>
    214
Note: See TracChangeset for help on using the changeset viewer.