Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
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
70d27ff2
authored
Mar 09, 2014
by
Dudás Ádám
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vm: use bare generator expressions instead of list comprehensions
parent
3d296de2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
circle/vm/models/instance.py
+2
-3
No files found.
circle/vm/models/instance.py
View file @
70d27ff2
...
@@ -137,8 +137,7 @@ class InstanceTemplate(AclBase, VirtualMachineDescModel, TimeStampedModel):
...
@@ -137,8 +137,7 @@ class InstanceTemplate(AclBase, VirtualMachineDescModel, TimeStampedModel):
def
running_instances
(
self
):
def
running_instances
(
self
):
"""The number of running instances of the template.
"""The number of running instances of the template.
"""
"""
return
len
([
i
for
i
in
self
.
instance_set
.
all
()
return
sum
(
1
for
i
in
self
.
instance_set
.
all
()
if
i
.
is_running
)
if
i
.
state
==
'RUNNING'
])
@property
@property
def
os_type
(
self
):
def
os_type
(
self
):
...
@@ -245,7 +244,7 @@ class Instance(AclBase, VirtualMachineDescModel, TimeStampedModel):
...
@@ -245,7 +244,7 @@ class Instance(AclBase, VirtualMachineDescModel, TimeStampedModel):
def
__unicode__
(
self
):
def
__unicode__
(
self
):
parts
=
(
self
.
name
,
"("
+
str
(
self
.
id
)
+
")"
)
parts
=
(
self
.
name
,
"("
+
str
(
self
.
id
)
+
")"
)
return
" "
.
join
(
[
s
for
s
in
parts
if
s
!=
""
]
)
return
" "
.
join
(
s
for
s
in
parts
if
s
!=
""
)
@property
@property
def
is_console_available
(
self
):
def
is_console_available
(
self
):
...
...
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