Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sbws
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
juga
sbws
Commits
9c740fcf
Commit
9c740fcf
authored
7 years ago
by
Matt Traudt
Browse files
Options
Downloads
Plain Diff
Merge branch 'time_prioritizer' from juga, thanks!
parents
f0113c55
3e89fc36
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sbws/lib/relayprioritizer.py
+6
-0
6 additions, 0 deletions
sbws/lib/relayprioritizer.py
with
6 additions
and
0 deletions
sbws/lib/relayprioritizer.py
+
6
−
0
View file @
9c740fcf
from
decimal
import
Decimal
from
..lib.resultdump
import
ResultDump
from
..lib.resultdump
import
Result
from
..lib.resultdump
import
ResultError
...
...
@@ -55,6 +56,7 @@ class RelayPrioritizer:
get around to giving the relay another chance at a getting a successful
measurement.
'''
fn_tstart
=
Decimal
(
time
.
time
())
relays
=
copy
.
deepcopy
(
self
.
relay_list
.
relays
)
rd
=
self
.
result_dump
for
relay
in
relays
:
...
...
@@ -84,6 +86,10 @@ class RelayPrioritizer:
# relays at the front
relays
=
sorted
(
relays
,
key
=
lambda
r
:
r
.
priority
)
cutoff
=
max
(
int
(
len
(
relays
)
*
PERCENT_TO_RETURN
),
MIN_TO_RETURN
)
fn_tstop
=
Decimal
(
time
.
time
())
fn_tdelta
=
(
fn_tstop
-
fn_tstart
)
*
1000
self
.
log
.
info
(
'
Spent {0:.3f} msecs calculating relay best priority
'
.
format
(
fn_tdelta
))
# Finally, slowly return the relays to the caller (after removing the
# priority member we polluted the variable with ...)
for
relay
in
relays
[
0
:
cutoff
]:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment