Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/WebPush/WebPushManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ public actor WebPushManager: Sendable {
request.body = .bytes(ByteBuffer(bytes: requestContent))

/// Send the request to the push endpoint.
let response = try await httpClient.execute(request, deadline: .now(), logger: logger)
let response = try await httpClient.execute(request, deadline: .now() + .seconds(2), logger: logger)

/// Check the response and determine if the subscription should be removed from our records, or if the notification should just be skipped.
switch response.status {
Expand Down
Loading