Title: [255643] branches/safari-610.1.1-branch/Source/WebCore
Revision
255643
Author
alanc...@apple.com
Date
2020-02-03 19:09:15 -0800 (Mon, 03 Feb 2020)

Log Message

Cherry-pick r255431. rdar://problem/58606666

    REGRESSION (r252064): [ Mac iOS ] storage/websql/statement-error-callback.html is timing out flakily
    https://bugs.webkit.org/show_bug.cgi?id=206291
    <rdar://problem/58606666>

    Unreviewed, partial rollout of r252064 which seems to have introduced the regression.

    No new tests, covered by existing test

    * Modules/webdatabase/SQLTransaction.cpp:
    (WebCore::SQLTransaction::notifyDatabaseThreadIsShuttingDown):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@255431 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-610.1.1-branch/Source/WebCore/ChangeLog (255642 => 255643)


--- branches/safari-610.1.1-branch/Source/WebCore/ChangeLog	2020-02-04 03:09:12 UTC (rev 255642)
+++ branches/safari-610.1.1-branch/Source/WebCore/ChangeLog	2020-02-04 03:09:15 UTC (rev 255643)
@@ -1,5 +1,35 @@
 2020-02-03  Russell Epstein  <repst...@apple.com>
 
+        Cherry-pick r255431. rdar://problem/58606666
+
+    REGRESSION (r252064): [ Mac iOS ] storage/websql/statement-error-callback.html is timing out flakily
+    https://bugs.webkit.org/show_bug.cgi?id=206291
+    <rdar://problem/58606666>
+    
+    Unreviewed, partial rollout of r252064 which seems to have introduced the regression.
+    
+    No new tests, covered by existing test
+    
+    * Modules/webdatabase/SQLTransaction.cpp:
+    (WebCore::SQLTransaction::notifyDatabaseThreadIsShuttingDown):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@255431 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2020-01-30  Chris Dumez  <cdu...@apple.com>
+
+            REGRESSION (r252064): [ Mac iOS ] storage/websql/statement-error-callback.html is timing out flakily
+            https://bugs.webkit.org/show_bug.cgi?id=206291
+            <rdar://problem/58606666>
+
+            Unreviewed, partial rollout of r252064 which seems to have introduced the regression.
+
+            No new tests, covered by existing test
+
+            * Modules/webdatabase/SQLTransaction.cpp:
+            (WebCore::SQLTransaction::notifyDatabaseThreadIsShuttingDown):
+
+2020-02-03  Russell Epstein  <repst...@apple.com>
+
         Cherry-pick r255329. rdar://problem/58606666
 
     REGRESSION (r252064): [ Mac iOS ] storage/websql/statement-error-callback.html is timing out flakily

Modified: branches/safari-610.1.1-branch/Source/WebCore/Modules/webdatabase/SQLTransaction.cpp (255642 => 255643)


--- branches/safari-610.1.1-branch/Source/WebCore/Modules/webdatabase/SQLTransaction.cpp	2020-02-04 03:09:12 UTC (rev 255642)
+++ branches/safari-610.1.1-branch/Source/WebCore/Modules/webdatabase/SQLTransaction.cpp	2020-02-04 03:09:15 UTC (rev 255643)
@@ -127,10 +127,6 @@
 
 void SQLTransaction::notifyDatabaseThreadIsShuttingDown()
 {
-    callOnMainThread([this, protectedThis = makeRef(*this)]() mutable {
-        callErrorCallbackDueToInterruption();
-    });
-
     m_backend.notifyDatabaseThreadIsShuttingDown();
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to