Skip to content

Commit

Permalink
Reduce timeout
Browse files Browse the repository at this point in the history
There is no reason to wait for more than 1 hour. I that happens, we need
to fix the slowness of the environment/machine and not block queues.
  • Loading branch information
fauust committed Apr 26, 2024
1 parent d746eda commit 60cdabd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions master-docker-nonstandard-2/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ def add_test_steps(factory, test_types):
),
),
],
timeout=10800,
timeout=3600,
dbpool=mtrDbPool,
parallel=mtrJobsMultiplier,
env=MTR_ENV,
Expand Down Expand Up @@ -902,7 +902,7 @@ f_without_server.addStep(
f_without_server.addStep(
steps.ShellCommand(
name="save_packages",
timeout=7200,
timeout=3600,
haltOnFailure=True,
command=util.Interpolate(
"mkdir -p "
Expand Down Expand Up @@ -1213,7 +1213,7 @@ f_bintar.addStep(
f_bintar.addStep(
steps.ShellCommand(
name="save_packages",
timeout=7200,
timeout=3600,
haltOnFailure=True,
command=util.Interpolate(
"mkdir -p "
Expand Down
6 changes: 3 additions & 3 deletions master-docker-nonstandard/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ def add_test_steps(factory, test_types):
),
),
],
timeout=10800,
timeout=3600,
dbpool=mtrDbPool,
parallel=mtrJobsMultiplier,
env=MTR_ENV,
Expand Down Expand Up @@ -1149,7 +1149,7 @@ f_without_server.addStep(
f_without_server.addStep(
steps.ShellCommand(
name="save_packages",
timeout=7200,
timeout=3600,
haltOnFailure=True,
command=util.Interpolate(
"mkdir -p "
Expand Down Expand Up @@ -1461,7 +1461,7 @@ f_bintar.addStep(
f_bintar.addStep(
steps.ShellCommand(
name="save_packages",
timeout=7200,
timeout=3600,
haltOnFailure=True,
command=util.Interpolate(
"mkdir -p "
Expand Down

0 comments on commit 60cdabd

Please sign in to comment.