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,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 5B6D31FA29 for ; Thu, 19 Jan 2023 20:32:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1674160358; bh=KKkQqlEaCrExK8Ib6ggF242eWjm3Sz0SUo+L64weRNg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=JLZYNUN3d/lZ+VnHimDPA0KTFw6/Sc2sny8tnuq47EKfIJ4dWRmG775miDLJ9cYNE GtYaXS6d/3iyywdPhjwKKwBbnQokBJiZOgR6U1dL98WrNwvBFsIyJJ6GBUGcxWjAom GSdAjf7jrUFf7jbzNvmiVUd815qjogoUQCKrJhws= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 4/4] qspawn: drop unnecessary awaitpid import Date: Thu, 19 Jan 2023 20:32:37 +0000 Message-Id: <20230119203237.2277543-5-e@80x24.org> In-Reply-To: <20230119203237.2277543-1-e@80x24.org> References: <20230119203237.2277543-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: We don't actually need to call awaitpid here, ProcessPipe will take care of that. --- lib/PublicInbox/Qspawn.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/PublicInbox/Qspawn.pm b/lib/PublicInbox/Qspawn.pm index de74b174..cc81a4cd 100644 --- a/lib/PublicInbox/Qspawn.pm +++ b/lib/PublicInbox/Qspawn.pm @@ -28,7 +28,6 @@ package PublicInbox::Qspawn; use v5.12; use PublicInbox::Spawn qw(popen_rd); use PublicInbox::GzipFilter; -use PublicInbox::DS qw(awaitpid); use Scalar::Util qw(blessed); # n.b.: we get EAGAIN with public-inbox-httpd, and EINTR on other PSGI servers