about summary refs log tree commit homepage
path: root/lib/PublicInbox/LEI.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/LEI.pm')
-rw-r--r--lib/PublicInbox/LEI.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/LEI.pm b/lib/PublicInbox/LEI.pm
index 8b0614f2..549b855b 100644
--- a/lib/PublicInbox/LEI.pm
+++ b/lib/PublicInbox/LEI.pm
@@ -1501,9 +1501,9 @@ sub sto_done_request { # only call this from lei-daemon process (not workers)
         eval {
                 if ($sock //= $lei->{sock}) { # issue, async wait
                         $LIVE_SOCK{"$sock"} = $sock;
-                        $lei->{sto}->ipc_do('done', "$sock");
+                        $lei->{sto}->wq_do('done', "$sock");
                 } else { # forcibly wait
-                        my $wait = $lei->{sto}->ipc_do('done');
+                        my $wait = $lei->{sto}->wq_do('done');
                 }
         };
         $lei->err($@) if $@;