Skip to content

Commit

Permalink
[Server] Correct maximum allowed value for preppgi maxfiles to 1024.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 committed Dec 9, 2021
1 parent dbf8001 commit e677c11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdOfs/XrdOfsPrepGPI.cc
Expand Up @@ -860,7 +860,7 @@ XrdOfsPrepare *XrdOfsgetPrepare(XrdOfsgetPrepareArguments)
return 0;
}
if (XrdOuca2x::a2i(*eLog, "PrepPGI -maxfiles", tokP,
&maxFiles, 1, 48)) return 0;
&maxFiles, 1, 1024)) return 0;
}
else if (Token == "-maxquery")
{if (!(tokP = gpiConf.GetToken()) || *tokP == '-')
Expand Down

0 comments on commit e677c11

Please sign in to comment.