Skip to content

Commit

Permalink
debug PRT
Browse files Browse the repository at this point in the history
  • Loading branch information
tpapaioa committed Sep 12, 2024
1 parent 2cca785 commit f50ef7f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/foreman/api/test_http_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"""

import time
from time import sleep

from fauxfactory import gen_string
import pytest
Expand Down Expand Up @@ -188,12 +188,14 @@ def log_container_status(container_name):

log_container_status(name)

sleep(30)

# This command works
result = rhel_contenthost.execute('ls')

# The container stops at some point
log_container_status(name)
time.sleep(5)
sleep(5)
log_container_status(name)

container = client.containers.get(name)
Expand Down

0 comments on commit f50ef7f

Please sign in to comment.