Title: [225533] trunk/Source/WebCore
Revision
225533
Author
commit-qu...@webkit.org
Date
2017-12-05 13:24:29 -0800 (Tue, 05 Dec 2017)

Log Message

Call "Terminate Service Worker" on all workers when all their clients are gone
https://bugs.webkit.org/show_bug.cgi?id=179552
<rdar://problem/35836323>

Unreviewed.

Patch by Youenn Fablet <you...@apple.com> on 2017-12-05

* workers/service/server/SWServer.cpp: Reducing from 60_s to 10_s based on bugzilla comment.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (225532 => 225533)


--- trunk/Source/WebCore/ChangeLog	2017-12-05 21:24:22 UTC (rev 225532)
+++ trunk/Source/WebCore/ChangeLog	2017-12-05 21:24:29 UTC (rev 225533)
@@ -1,3 +1,13 @@
+2017-12-05  Youenn Fablet  <you...@apple.com>
+
+        Call "Terminate Service Worker" on all workers when all their clients are gone
+        https://bugs.webkit.org/show_bug.cgi?id=179552
+        <rdar://problem/35836323>
+
+        Unreviewed.
+
+        * workers/service/server/SWServer.cpp: Reducing from 60_s to 10_s based on bugzilla comment.
+
 2017-12-05  Chris Dumez  <cdu...@apple.com>
 
         Add support for ServiceWorkerContainer.prototype.ready

Modified: trunk/Source/WebCore/workers/service/server/SWServer.cpp (225532 => 225533)


--- trunk/Source/WebCore/workers/service/server/SWServer.cpp	2017-12-05 21:24:22 UTC (rev 225532)
+++ trunk/Source/WebCore/workers/service/server/SWServer.cpp	2017-12-05 21:24:29 UTC (rev 225533)
@@ -52,7 +52,7 @@
     return generateObjectIdentifier<ServiceWorkerIdentifierType>();
 }
 
-static Seconds terminationDelay { 60_s };
+static Seconds terminationDelay { 10_s };
 
 SWServer::Connection::Connection(SWServer& server)
     : m_server(server)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to