Changeset 225533 in webkit


Ignore:
Timestamp:
Dec 5, 2017 1:24:29 PM (6 years ago)
Author:
commit-queue@webkit.org
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 <youenn@apple.com> on 2017-12-05

  • workers/service/server/SWServer.cpp: Reducing from 60_s to 10_s based on bugzilla comment.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r225531 r225533  
     12017-12-05  Youenn Fablet  <youenn@apple.com>
     2
     3        Call "Terminate Service Worker" on all workers when all their clients are gone
     4        https://bugs.webkit.org/show_bug.cgi?id=179552
     5        <rdar://problem/35836323>
     6
     7        Unreviewed.
     8
     9        * workers/service/server/SWServer.cpp: Reducing from 60_s to 10_s based on bugzilla comment.
     10
    1112017-12-05  Chris Dumez  <cdumez@apple.com>
    212
  • trunk/Source/WebCore/workers/service/server/SWServer.cpp

    r225531 r225533  
    5353}
    5454
    55 static Seconds terminationDelay { 60_s };
     55static Seconds terminationDelay { 10_s };
    5656
    5757SWServer::Connection::Connection(SWServer& server)
Note: See TracChangeset for help on using the changeset viewer.