Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
01895baf
Commit
01895baf
authored
Jan 16, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Bugfix] task运行失败,因为tasks没有设置
parent
f1ec53d1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
models.py
apps/ops/models.py
+1
-1
utils.py
apps/ops/utils.py
+2
-0
signals_handler.py
apps/terminal/signals_handler.py
+0
-4
No files found.
apps/ops/models.py
View file @
01895baf
...
...
@@ -165,7 +165,7 @@ class AdHoc(models.Model):
if
item
and
isinstance
(
item
,
list
):
self
.
_tasks
=
json
.
dumps
(
item
)
else
:
raise
SyntaxError
(
'Tasks should be a list
'
)
raise
SyntaxError
(
'Tasks should be a list
: {}'
.
format
(
item
)
)
@property
def
hosts
(
self
):
...
...
apps/ops/utils.py
View file @
01895baf
...
...
@@ -16,6 +16,8 @@ def update_or_create_ansible_task(
run_as_admin
=
False
,
run_as
=
""
,
become_info
=
None
,
created_by
=
None
,
):
if
not
hosts
or
not
tasks
or
not
task_name
:
return
defaults
=
{
'name'
:
task_name
,
...
...
apps/terminal/signals_handler.py
View file @
01895baf
...
...
@@ -13,10 +13,6 @@ RUNNING = False
logger
=
get_logger
(
__file__
)
@shared_task
@register_as_period_task
(
interval
=
3600
)
@after_app_ready_start
@after_app_shutdown_clean
def
set_session_info_cache
():
logger
.
debug
(
""
)
from
.utils
import
get_session_asset_list
,
get_session_user_list
,
\
...
...
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