about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-07-08 07:22:31 +0000
committerEric Wong <e@80x24.org>2019-07-08 07:29:26 +0000
commit3672f8765e3d4e15bc470dd18c6c8011dad296e0 (patch)
tree7ac21c4722a9fd1f0468b7f36752354ee6647dac
parente5590311007f9d126e61510d42228303fdf94e54 (diff)
downloadpublic-inbox-3672f8765e3d4e15bc470dd18c6c8011dad296e0.tar.gz
*glob notation isn't always necessary, and there's
no need to disable 'once' warnings, this way.
-rw-r--r--lib/PublicInbox/HTTPD.pm5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/PublicInbox/HTTPD.pm b/lib/PublicInbox/HTTPD.pm
index b0bf94ad..d10ec51c 100644
--- a/lib/PublicInbox/HTTPD.pm
+++ b/lib/PublicInbox/HTTPD.pm
@@ -39,10 +39,7 @@ sub new {
                 # The rest of our PSGI code is generic, relying
                 # on "pull" model using "getline" to prevent
                 # over-buffering.
-                'pi-httpd.async' => do {
-                        no warnings 'once';
-                        *pi_httpd_async
-                },
+                'pi-httpd.async' => \&pi_httpd_async
         );
         bless {
                 app => $app,