Title: [280763] trunk/Tools
Revision
280763
Author
aakash_j...@apple.com
Date
2021-08-07 18:20:45 -0700 (Sat, 07 Aug 2021)

Log Message

[ews] Limit the size of error context buffer
https://bugs.webkit.org/show_bug.cgi?id=228900

Reviewed by Alexey Proskuryakov.

* CISupport/ews-build/steps.py:
(BuildLogLineObserver.outLineReceived): Limit the lines for additional context to 50 lines.

Modified Paths

Diff

Modified: trunk/Tools/CISupport/ews-build/steps.py (280762 => 280763)


--- trunk/Tools/CISupport/ews-build/steps.py	2021-08-07 22:47:09 UTC (rev 280762)
+++ trunk/Tools/CISupport/ews-build/steps.py	2021-08-08 01:20:45 UTC (rev 280763)
@@ -1529,7 +1529,7 @@
             self.error_context_buffer.append(line)
 
         if self.searchString in line:
-            for log in self.error_context_buffer:
+            for log in self.error_context_buffer[-50:]:
                 self.errorReceived(log)
             self.error_context_buffer = []
 

Modified: trunk/Tools/ChangeLog (280762 => 280763)


--- trunk/Tools/ChangeLog	2021-08-07 22:47:09 UTC (rev 280762)
+++ trunk/Tools/ChangeLog	2021-08-08 01:20:45 UTC (rev 280763)
@@ -1,3 +1,13 @@
+2021-08-07  Aakash Jain  <aakash_j...@apple.com>
+
+        [ews] Limit the size of error context buffer
+        https://bugs.webkit.org/show_bug.cgi?id=228900
+
+        Reviewed by Alexey Proskuryakov.
+
+        * CISupport/ews-build/steps.py:
+        (BuildLogLineObserver.outLineReceived): Limit the lines for additional context to 50 lines.
+
 2021-08-07  Wenson Hsieh  <wenson_hs...@apple.com>
 
         [macOS] Web process crashes when detaching Document with uncommitted marked text
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to