to set the timeout for a specific input in the GitInput plugin.
Remove the comments about using inputs with spaces.
JYXWIQG4SYQYKID7V4KLHLCTNF2DEH73FPNIF5EU2VZTAVPSE6SAC
<git-input>
# general timeout
timeout = 400
<input-name>
# specific timeout for a particular input name
timeout = 400
</input-name>
Expected configuration format in the hydra config file:
<git-input>
# general timeout
timeout = 400
<project:jobset:input-name>
# specific timeout for a particular input
timeout = 400
</project:jobset:input-name>
if (defined $cfg->{$input_name} and %{$cfg->{$input_name}}) {
_printIfDebug "Merging sections for $input_name\n";
$cfg = {%{$cfg}, %{$cfg->{$input_name}}}; # merge with precedense to the input name
if (defined $cfg->{$input_block} and %{$cfg->{$input_block}}) {
_printIfDebug "Merging sections from $input_block\n";
# merge with precedense to the input block
$cfg = {%{$cfg}, %{$cfg->{$input_block}}};