about summary refs log tree commit homepage
path: root/lib/PublicInbox/Daemon.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-11-26 21:08:01 +0000
committerEric Wong <e@80x24.org>2023-11-26 21:08:25 +0000
commit13a7f10e585b0816e375f134f00a1d2fe9af4bd3 (patch)
tree670f6b010540cad82fa7c6f9732f708b9c70177d /lib/PublicInbox/Daemon.pm
parent51b2fa7fb2b7b1caed8b1dde4613992a192225ed (diff)
downloadpublic-inbox-13a7f10e585b0816e375f134f00a1d2fe9af4bd3.tar.gz
drop redundant calls to DS->Reset
Reset gets called on END{} anyways to workaround DBI lifetime
problems, so there's no need to call it near exit.  We can't
replace calls to POSIX::_exit with `exit' to force END{} to
run just yet, as there are still some lingering destruction
ordering problems on newer DBI and or Perls.
Diffstat (limited to 'lib/PublicInbox/Daemon.pm')
-rw-r--r--lib/PublicInbox/Daemon.pm1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/PublicInbox/Daemon.pm b/lib/PublicInbox/Daemon.pm
index f33f6f17..a2c1ed6e 100644
--- a/lib/PublicInbox/Daemon.pm
+++ b/lib/PublicInbox/Daemon.pm
@@ -703,7 +703,6 @@ sub run {
         local %POST_ACCEPT;
 
         daemon_loop();
-        PublicInbox::DS->Reset;
         # ->DESTROY runs when $for_destroy goes out-of-scope
 }