From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id C7CE21FA5C for ; Tue, 17 Oct 2023 23:38:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1697585900; bh=dlPdXKFmHSbT3pBemU24fzoLbXuIqMo/4ERCtGKzI3c=; h=From:To:Subject:Date:In-Reply-To:References:From; b=HLgNGqBHmvQJtFuVC578gzYMrO4JXn2X7g4FWYWZ5lXP7IPsPvW46hEAK/faGzUHj 5R1pat5X/8ECa+v4N7MEYKKgmoMOhnoF32BUKcpo63Yp8uoTaWQw6dVgwIMQhuXY2u ypp765ZRr2EzspUIC4zDbUCElC/ghlyZKECX2R7g= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 27/30] lei_auth: update comments and use v5.12 Date: Tue, 17 Oct 2023 23:38:12 +0000 Message-ID: <20231017233815.1637932-28-e@80x24.org> In-Reply-To: <20231017233815.1637932-1-e@80x24.org> References: <20231017233815.1637932-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: There's nothing affected by the `unicode_strings' feature, so it's safe to use v5.12, here. --- lib/PublicInbox/LeiAuth.pm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/PublicInbox/LeiAuth.pm b/lib/PublicInbox/LeiAuth.pm index 76a4410d..020dd125 100644 --- a/lib/PublicInbox/LeiAuth.pm +++ b/lib/PublicInbox/LeiAuth.pm @@ -1,8 +1,8 @@ -# Copyright (C) 2021 all contributors +# Copyright (C) all contributors # License: AGPL-3.0+ # Authentication worker for anything that needs auth for read/write IMAP -# (eventually for read-only NNTP access) +# and read-only NNTP access # # timelines # lei-daemon | LeiAuth worker #0 | other WQ workers @@ -22,8 +22,7 @@ # | # call net_merge_all_done ->-> do per-WQ-class defined actions package PublicInbox::LeiAuth; -use strict; -use v5.10.1; +use v5.12; sub do_auth_atfork { # used by IPC WQ workers my ($self, $wq) = @_;