⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243913 in webkit


Ignore:
Timestamp:
Apr 4, 2019, 3:42:43 PM (7 years ago)
Author:
aakash_jain@apple.com
Message:

[ews-app] Status-bubble steps are sometimes displayed in reverse order
https://bugs.webkit.org/show_bug.cgi?id=196625

Reviewed by Lucas Forschler.

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

(StatusBubble._steps_messages): Explicitly specify order_by('uid').

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r243897 r243913  
    123123
    124124    def _steps_messages(self, build):
    125         return '\n'.join([step.state_string for step in build.step_set.all() if self._should_display_step(step)])
     125        return '\n'.join([step.state_string for step in build.step_set.all().order_by('uid') if self._should_display_step(step)])
    126126
    127127    def _should_display_step(self, step):
  • trunk/Tools/ChangeLog

    r243912 r243913  
     12019-04-04  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews-app] Status-bubble steps are sometimes displayed in reverse order
     4        https://bugs.webkit.org/show_bug.cgi?id=196625
     5
     6        Reviewed by Lucas Forschler.
     7
     8        * BuildSlaveSupport/ews-app/ews/views/statusbubble.py:
     9        (StatusBubble._steps_messages): Explicitly specify order_by('uid').
     10
    1112019-04-04  Aakash Jain  <aakash_jain@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.