From dee51463188b35f2fc1a8c07b5db3eadd71ac20c Mon Sep 17 00:00:00 2001 From: Brandon Sakai Date: Fri, 9 Jun 2023 14:31:44 +0000 Subject: [PATCH] Fix spacing for perltidy --- lib/Mojo/Server/Prefork.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Mojo/Server/Prefork.pm b/lib/Mojo/Server/Prefork.pm index 9935d9819b..35a649125a 100644 --- a/lib/Mojo/Server/Prefork.pm +++ b/lib/Mojo/Server/Prefork.pm @@ -181,7 +181,7 @@ sub _wait { while ($chunk =~ /(\d+):(\d)\n/g) { next unless my $w = $self->{pool}{$1}; @$w{qw(healthy time)} = (1, $time) and $self->emit(heartbeat => $1); - if($2) { + if ($2) { $w->{graceful} ||= $time; $w->{quit}++; }