diff options
Diffstat (limited to 'doctor_tests')
-rw-r--r-- | doctor_tests/main.py | 2 | ||||
-rw-r--r-- | doctor_tests/scenario/fault_management.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doctor_tests/main.py b/doctor_tests/main.py index 61facb61..79480ca1 100644 --- a/doctor_tests/main.py +++ b/doctor_tests/main.py @@ -67,7 +67,7 @@ class DoctorTest(object): # injecting host failure... # NOTE (umar) add INTERFACE_NAME logic to host injection self.fault_management.start() - time.sleep(10) + time.sleep(30) # verify the test results # NOTE (umar) copy remote monitor.log file when monitor=collectd diff --git a/doctor_tests/scenario/fault_management.py b/doctor_tests/scenario/fault_management.py index b1fe8099..f8f53e8e 100644 --- a/doctor_tests/scenario/fault_management.py +++ b/doctor_tests/scenario/fault_management.py @@ -32,7 +32,7 @@ dev=$(sudo ip a | awk '/ {compute_ip}\//{{print $NF}}') sleep 1 sudo ip link set $dev down echo "doctor set link down at" $(date "+%s.%N") -sleep 10 +sleep 30 sudo ip link set $dev up sleep 1 """ |