Changeset 240303 in webkit


Ignore:
Timestamp:
Jan 22, 2019 4:04:23 PM (5 years ago)
Author:
aakash_jain@apple.com
Message:

[ews-app] fetch loop should not stop on network issues
https://bugs.webkit.org/show_bug.cgi?id=193666

Reviewed by Lucas Forschler.

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

(FetchLoop.run): Ensure that fetch loop doesn't exit on any exception.

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r240154 r240303  
    4141    def run(self):
    4242        while True:
    43             BugzillaPatchFetcher().fetch()
     43            try:
     44                BugzillaPatchFetcher().fetch()
     45            except Exception as e:
     46                _log.error('Exception in BugzillaPatchFetcher: {}'.format(e))
    4447            time.sleep(self.interval)
    4548
  • trunk/Tools/ChangeLog

    r240301 r240303  
     12019-01-22  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews-app] fetch loop should not stop on network issues
     4        https://bugs.webkit.org/show_bug.cgi?id=193666
     5
     6        Reviewed by Lucas Forschler.
     7
     8        * BuildSlaveSupport/ews-app/ews/fetcher.py:
     9        (FetchLoop.run): Ensure that fetch loop doesn't exit on any exception.
     10
    1112019-01-22  Wenson Hsieh  <wenson_hsieh@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.