Update length limit to 25k

See https://github.com/docker/hub-beta-feedback/issues/238#issuecomment-137202994
This commit is contained in:
Tianon Gravi 2015-09-02 11:56:22 -07:00
parent 0e6eddfaae
commit 79613d80ad
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ use Mojo::Util qw(decode encode slurp spurt trim);
use Term::UI; use Term::UI;
use Term::ReadLine; use Term::ReadLine;
my $hubLengthLimit = 5000; my $hubLengthLimit = 25_000;
my $githubBase = 'https://github.com/docker-library/docs/tree/master'; my $githubBase = 'https://github.com/docker-library/docs/tree/master';
my $username; my $username;