Skip to content

Commit

Permalink
Merge pull request #237 from canonical/disable-output-timeout-checkin…
Browse files Browse the repository at this point in the history
…g-for-now

Temporarily disable output timeout checking until we have a better fix
  • Loading branch information
plars authored Mar 25, 2024
2 parents 10d680d + ca3dff6 commit ae5b9fb
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions agent/testflinger_agent/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
from .stop_condition_checkers import (
JobCancelledChecker,
GlobalTimeoutChecker,
OutputTimeoutChecker,
)

logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -95,13 +94,6 @@ def run_test_phase(self, phase, rundir):
)
runner.register_stop_condition_checker(global_timeout_checker)

# We only need to check for output timeouts during the test phase
if phase == "test":
output_timeout_checker = OutputTimeoutChecker(
self.get_output_timeout()
)
runner.register_stop_condition_checker(output_timeout_checker)

# Do not allow cancellation during provision for safety reasons
if phase != "provision":
job_cancelled_checker = JobCancelledChecker(
Expand Down

0 comments on commit ae5b9fb

Please sign in to comment.