Skip to content
GitLab
Menu
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
24a1a412
Commit
24a1a412
authored
Oct 29, 2018
by
juga
Browse files
Merge branch 'ticket28061_priority'
parents
fe1be7ba
565350c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
24a1a412
...
...
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
-
Catch unhandled exception when we fail to resolve a domain name (#28141)
-
Bandwidth filtered is the maximum between the bandwidth measurements and
their mean, not the minimum (#28215)
-
Stop measuring the same relay by two threads(#28061)
### Changed
...
...
sbws/core/scanner.py
View file @
24a1a412
...
...
@@ -357,6 +357,9 @@ def run_speedtest(args, conf):
while
len
(
pending_results
)
>=
max_pending_results
:
time
.
sleep
(
5
)
pending_results
=
[
r
for
r
in
pending_results
if
not
r
.
ready
()]
while
len
(
pending_results
)
>
0
:
time
.
sleep
(
5
)
pending_results
=
[
r
for
r
in
pending_results
if
not
r
.
ready
()]
def
gen_parser
(
sub
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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