Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
f87c1242
authored
Dec 01, 2013
by
Bach Dániel
Committed by
Guba Sándor
Dec 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vm: fix imports in local_agent_tasks.py
parent
e9a14e71
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
circle/vm/tasks/local_agent_tasks.py
+3
-3
No files found.
circle/vm/tasks/local_agent_tasks.py
View file @
f87c1242
...
...
@@ -6,7 +6,7 @@ import time
@celery.task
def
agent_started
(
vm
):
from
vm.models
import
Instance
,
instance_activity
from
vm.models
.instance
import
Instance
,
instance_activity
instance
=
Instance
.
objects
.
get
(
id
=
int
(
vm
.
split
(
'-'
)[
-
1
]))
with
instance_activity
(
code_suffix
=
'agent'
,
instance
=
instance
)
as
act
:
...
...
@@ -25,7 +25,7 @@ def agent_started(vm):
@celery.task
def
agent_stopped
(
vm
):
from
vm.models
import
Instance
,
InstanceActivity
from
vm.models
.instance
import
Instance
,
InstanceActivity
instance
=
Instance
.
objects
.
get
(
id
=
int
(
vm
.
split
(
'-'
)[
-
1
]))
qs
=
InstanceActivity
.
objects
.
filter
(
instance
=
instance
,
activity_code
=
'vm.Instance.agent'
)
...
...
@@ -36,7 +36,7 @@ def agent_stopped(vm):
@celery.task
def
agent_ok
(
vm
):
from
vm.models
import
Instance
,
InstanceActivity
from
vm.models
.instance
import
Instance
,
InstanceActivity
instance
=
Instance
.
objects
.
get
(
id
=
int
(
vm
.
split
(
'-'
)[
-
1
]))
qs
=
InstanceActivity
.
objects
.
filter
(
instance
=
instance
,
activity_code
=
'vm.Instance.agent'
)
...
...
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