Title: [203479] trunk/Tools
Revision
203479
Author
aakash_j...@apple.com
Date
2016-07-20 16:28:22 -0700 (Wed, 20 Jul 2016)

Log Message

REGRESSION(r148588): ews classes might get garbage collected
https://bugs.webkit.org/show_bug.cgi?id=159990

Reviewed by Ryosuke Niwa.

* Scripts/webkitpy/tool/commands/__init__.py: Store the loaded ews classes
in a variable so that they do not get garbage collected.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (203478 => 203479)


--- trunk/Tools/ChangeLog	2016-07-20 23:24:15 UTC (rev 203478)
+++ trunk/Tools/ChangeLog	2016-07-20 23:28:22 UTC (rev 203479)
@@ -1,3 +1,13 @@
+2016-07-20  Aakash Jain  <aakash_j...@apple.com>
+
+        REGRESSION(r148588): ews classes might get garbage collected
+        https://bugs.webkit.org/show_bug.cgi?id=159990
+
+        Reviewed by Ryosuke Niwa.
+
+        * Scripts/webkitpy/tool/commands/__init__.py: Store the loaded ews classes
+        in a variable so that they do not get garbage collected.
+
 2016-07-20  Jeremy Jones  <jere...@apple.com>
 
         Add API test for layout constraints after exit fullscreen

Modified: trunk/Tools/Scripts/webkitpy/tool/commands/__init__.py (203478 => 203479)


--- trunk/Tools/Scripts/webkitpy/tool/commands/__init__.py	2016-07-20 23:24:15 UTC (rev 203478)
+++ trunk/Tools/Scripts/webkitpy/tool/commands/__init__.py	2016-07-20 23:28:22 UTC (rev 203479)
@@ -22,4 +22,4 @@
 from webkitpy.tool.commands.upload import *
 from webkitpy.tool.commands.suggestnominations import *
 
-AbstractEarlyWarningSystem.load_ews_classes()
+classes = AbstractEarlyWarningSystem.load_ews_classes()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to