WebKit Bugzilla
Attachment 359731 Details for
Bug 193666
: [ews-app] fetch loop should not stop on network issues
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed patch
ews-app-handle-exception.patch (text/plain), 1.24 KB, created by
Aakash Jain
on 2019-01-22 06:18:55 PST
(
hide
)
Description:
Proposed patch
Filename:
MIME Type:
Creator:
Aakash Jain
Created:
2019-01-22 06:18:55 PST
Size:
1.24 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 240251) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,13 @@ >+2019-01-22 Aakash Jain <aakash_jain@apple.com> >+ >+ [ews-app] fetch loop should not stop on network issues >+ https://bugs.webkit.org/show_bug.cgi?id=193666 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * BuildSlaveSupport/ews-app/ews/fetcher.py: >+ (FetchLoop.run): Ensure that fetch loop doesn't exit on any exception. >+ > 2019-01-22 Oriol Brufau <obrufau@igalia.com> > > [css-logical] Implement flow-relative margin, padding and border shorthands >Index: Tools/BuildSlaveSupport/ews-app/ews/fetcher.py >=================================================================== >--- Tools/BuildSlaveSupport/ews-app/ews/fetcher.py (revision 240251) >+++ Tools/BuildSlaveSupport/ews-app/ews/fetcher.py (working copy) >@@ -40,7 +40,10 @@ class FetchLoop(): > > def run(self): > while True: >- BugzillaPatchFetcher().fetch() >+ try: >+ BugzillaPatchFetcher().fetch() >+ except Exception as e: >+ _log.error('Exception in BugzillaPatchFetcher: {}'.format(e)) > time.sleep(self.interval) > >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 193666
: 359731