Changeset 233190 in webkit


Ignore:
Timestamp:
Jun 25, 2018 9:58:42 PM (6 years ago)
Author:
dbates@webkit.org
Message:

Log a message when fetching attachment data from the status server
https://bugs.webkit.org/show_bug.cgi?id=187032

Reviewed by Zalan Bujtas.

Currently we silently fetch from the status server an attachment when fetching
the attachment from Bugzilla fails due to an access denied error. Instead we
should emit a message when fetching data from the status server to indicate
that webkit-patch/EWS is still processing the command/trying to obtain the
patch.

  • Scripts/webkitpy/common/net/statusserver.py:

(StatusServer._fetch_attachment_page):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r233175 r233190  
     12018-06-25  Daniel Bates  <dabates@apple.com>
     2
     3        Log a message when fetching attachment data from the status server
     4        https://bugs.webkit.org/show_bug.cgi?id=187032
     5
     6        Reviewed by Zalan Bujtas.
     7
     8        Currently we silently fetch from the status server an attachment when fetching
     9        the attachment from Bugzilla fails due to an access denied error. Instead we
     10        should emit a message when fetching data from the status server to indicate
     11        that webkit-patch/EWS is still processing the command/trying to obtain the
     12        patch.
     13
     14        * Scripts/webkitpy/common/net/statusserver.py:
     15        (StatusServer._fetch_attachment_page):
     16
    1172018-06-25  Aakash Jain  <aakash_jain@apple.com>
    218
  • trunk/Tools/Scripts/webkitpy/common/net/statusserver.py

    r233024 r233190  
    204204    def _fetch_attachment_page(self, action, attachment_id):
    205205        attachment_url = '{}/attachment/{}/{}'.format(self._server_url(), action, attachment_id)
     206        _log.info('Fetching: {}'.format(attachment_url))
    206207        return self._fetch_url(attachment_url)
    207208
Note: See TracChangeset for help on using the changeset viewer.