Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed the issue of not being able to gather data points with speedtest disabled #99

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Mobile_Site_Survey/Mobile_Site_Survey - compact CSV.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ def run_tests(sim):
except:
cp.log(f'Ookla failed to start for source {source_ip} on {sim}. Trying again...')
time.sleep(1)
retries += 1
pass
else:
log_all(f'Ookla startup exceeded retries for source {source_ip} on {sim}')
Expand Down
1 change: 1 addition & 0 deletions Mobile_Site_Survey/Mobile_Site_Survey.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,7 @@ def run_tests(sim):
except:
cp.log(f'Ookla failed to start for source {source_ip} on {sim}. Trying again...')
time.sleep(1)
retries += 1
pass
else:
log_all(f'Ookla startup exceeded retries for source {source_ip} on {sim}', logs)
Expand Down