From: Michael Tremer Date: Sun, 26 Jan 2025 11:02:07 +0000 (+0000) Subject: users: Don't include the TTL in the payload of the push message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcb367691b6c1939d52be040d7538e4c8978d726;p=pbs.git users: Don't include the TTL in the payload of the push message Signed-off-by: Michael Tremer --- diff --git a/src/buildservice/users.py b/src/buildservice/users.py index b4a79147..9523de6e 100644 --- a/src/buildservice/users.py +++ b/src/buildservice/users.py @@ -1042,10 +1042,6 @@ class UserPushSubscription(database.Base, database.BackendMixin): "body" : body, } - # Optionally add the TTL - if ttl: - message["ttl"] = ttl - # Convert dict() to JSON message = json.dumps(message)