Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gutyán Gábor
/
circlestack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
e056cb01
authored
Feb 18, 2014
by
Guba Sándor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scheduler: removed call from property
parent
9aac4f3f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
circle/manager/scheduler.py
+2
-2
No files found.
circle/manager/scheduler.py
View file @
e056cb01
...
...
@@ -51,7 +51,7 @@ def has_enough_ram(ram_size, node):
ram_size mebibytes of memory; otherwise, false.
"""
total
=
node
.
ram_size
used
=
(
node
.
ram_usage
()
/
100
)
*
total
used
=
(
node
.
ram_usage
/
100
)
*
total
unused
=
total
-
used
overcommit
=
node
.
ram_size_with_overcommit
...
...
@@ -66,7 +66,7 @@ def free_cpu_time(node):
Higher values indicate more idle time.
"""
activity
=
node
.
cpu_usage
()
/
100
activity
=
node
.
cpu_usage
/
100
inactivity
=
1
-
activity
cores
=
node
.
num_cores
return
cores
*
inactivity
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