Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
juga
sbws
Commits
9b24a0b1
Commit
9b24a0b1
authored
Oct 15, 2018
by
juga
Browse files
Use recent_results, since min_num_success_results
has been removed. Also add logging
parent
73c67f4b
Changes
1
Hide whitespace changes
Inline
Side-by-side
sbws/lib/v3bwfile.py
View file @
9b24a0b1
...
...
@@ -280,7 +280,11 @@ class V3BWLine(object):
'{} results.'
.
format
(
min_num
))
return
None
results_away
=
\
cls
.
results_away_each_other
(
min_num_success_results
,
secs_away
)
cls
.
results_away_each_other
(
success_results
,
secs_away
)
if
not
results_away
:
log
.
debug
(
"There are no results with relays' results away from"
" each other {}"
.
format
(
secs_away
))
return
None
results_recent
=
cls
.
results_recent_than
(
results_away
,
secs_recent
)
if
not
results_recent
:
return
None
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment