Changeset 252150 in webkit


Ignore:
Timestamp:
Nov 6, 2019 2:21:33 PM (5 years ago)
Author:
aakash_jain@apple.com
Message:

All EWS status-bubbles shows #1 on security patches when patch is uploaded with webkit-patch --no-review
https://bugs.webkit.org/show_bug.cgi?id=203903

Reviewed by David Kilzer.

  • BuildSlaveSupport/ews-app/ews/fetcher.py:

(BugzillaPatchFetcher.fetch):

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r251516 r252150  
    6464
    6565        for patch_id in patches_to_send:
    66             if Patch.is_patch_sent_to_buildbot(patch_id):
    67                 _log.error('Patch {} is already sent to buildbot.'.format(patch_id))
    68                 continue
    69             Patch.set_sent_to_buildbot(patch_id, True)
    7066            bz_patch = Bugzilla.retrieve_attachment(patch_id)
    7167            if not bz_patch or bz_patch['id'] != patch_id:
     
    7672                Patch.set_obsolete(patch_id)
    7773                continue
     74            if Patch.is_patch_sent_to_buildbot(patch_id):
     75                _log.error('Patch {} is already sent to buildbot.'.format(patch_id))
     76                continue
     77            Patch.set_sent_to_buildbot(patch_id, True)
    7878            rc = Buildbot.send_patch_to_buildbot(bz_patch['path'],
    7979                     properties=['patch_id={}'.format(patch_id), 'bug_id={}'.format(bz_patch['bug_id']), 'owner={}'.format(bz_patch.get('creator', ''))])
  • trunk/Tools/ChangeLog

    r252148 r252150  
     12019-11-06  Aakash Jain  <aakash_jain@apple.com>
     2
     3        All EWS status-bubbles shows #1 on security patches when patch is uploaded with webkit-patch --no-review
     4        https://bugs.webkit.org/show_bug.cgi?id=203903
     5
     6        Reviewed by David Kilzer.
     7
     8        * BuildSlaveSupport/ews-app/ews/fetcher.py:
     9        (BugzillaPatchFetcher.fetch):
     10
    1112019-11-06  Aakash Jain  <aakash_jain@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.