From: Eric Wong Date: Sat, 7 Jan 2017 01:44:47 +0000 (+0000) Subject: inbox: describe the full key name X-Git-Tag: v1.0.0~103 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=5874d6355916e96a220e07bb229e090a92415afd inbox: describe the full key name Hopefully make this easier for future generations to understand. --- diff --git a/lib/PublicInbox/Inbox.pm b/lib/PublicInbox/Inbox.pm index 5503980f..008a6cf7 100644 --- a/lib/PublicInbox/Inbox.pm +++ b/lib/PublicInbox/Inbox.pm @@ -60,6 +60,7 @@ sub _set_limiter ($$$) { my ($self, $git, $pfx) = @_; my $lkey = "-${pfx}_limiter"; $git->{$lkey} = $self->{$lkey} ||= eval { + # full key is: publicinbox.$NAME.httpbackendmax my $mkey = $pfx.'max'; my $val = $self->{$mkey} or return; my $lim;