unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] searchidxshard: call DS->Reset at worker start
@ 2020-12-31  6:54 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2020-12-31  6:54 UTC (permalink / raw)
  To: meta

The daemon for the local email interface will be inside
the DS->EventLoop.  -watch currently doesn't trigger this
bug since it doesn't enable parallelism, but it may in
the future.
---
 lib/PublicInbox/SearchIdxShard.pm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/PublicInbox/SearchIdxShard.pm b/lib/PublicInbox/SearchIdxShard.pm
index 87b0bad6..a41477cd 100644
--- a/lib/PublicInbox/SearchIdxShard.pm
+++ b/lib/PublicInbox/SearchIdxShard.pm
@@ -34,6 +34,7 @@ sub spawn_worker {
 	my $pid = fork;
 	defined $pid or die "fork failed: $!\n";
 	if ($pid == 0) {
+		eval { PublicInbox::DS->Reset };
 		# these signals are localized in parent
 		$SIG{$_} = 'IGNORE' for (qw(TERM INT QUIT));
 		PublicInbox::Sigfd::sig_setmask($oldset);

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-12-31  6:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-31  6:54 [PATCH] searchidxshard: call DS->Reset at worker start Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).