Sfoglia il codice sorgente

Update length limit to 25k

See https://github.com/docker/hub-beta-feedback/issues/238#issuecomment-137202994
Tianon Gravi 10 anni fa
parent
commit
79613d80ad
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      push.pl

+ 1 - 1
push.pl

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