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
1db410a2
authored
Mar 14, 2014
by
Guba Sándor
Committed by
Őry Máté
Mar 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
node: rework node online checking function
fixes #102
parent
0c3be3e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
circle/vm/models/node.py
+6
-4
No files found.
circle/vm/models/node.py
View file @
1db410a2
...
...
@@ -66,16 +66,18 @@ class Node(TimeStampedModel):
def
__unicode__
(
self
):
return
self
.
name
@method_cache
(
10
,
5
)
@method_cache
(
10
)
def
get_online
(
self
):
"""Check if the node is online.
Runs a remote ping task if the worker is running
.
Check if node is online by queue is available
.
"""
try
:
return
self
.
remote_query
(
vm_tasks
.
ping
,
timeout
=
1
,
default
=
False
)
except
WorkerNotFound
:
self
.
get_remote_queue_name
(
"vm"
)
except
:
return
False
else
:
return
True
online
=
property
(
get_online
)
...
...
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