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

Changeset 243464 in webkit


Ignore:
Timestamp:
Mar 25, 2019, 3:04:50 PM (7 years ago)
Author:
aakash_jain@apple.com
Message:

[ews-build] Gracefully handle missing patch_id in events
https://bugs.webkit.org/show_bug.cgi?id=196216

Reviewed by Lucas Forschler.

  • BuildSlaveSupport/ews-build/events.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/ews-build/events.py

    r242965 r243464  
    101101
    102102    def getPatchID(self, build):
    103         if not (build and 'properties' in build):
     103        if not (build and 'properties' in build and 'patch_id' in build['properties']):
    104104            return None
    105105
  • trunk/Tools/ChangeLog

    r243463 r243464  
     12019-03-25  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews-build] Gracefully handle missing patch_id in events
     4        https://bugs.webkit.org/show_bug.cgi?id=196216
     5
     6        Reviewed by Lucas Forschler.
     7
     8        * BuildSlaveSupport/ews-build/events.py:
     9
    1102019-03-25  Aakash Jain  <aakash_jain@apple.com>
    211
Note: See TracChangeset for help on using the changeset viewer.