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
2e4e5503
Commit
2e4e5503
authored
Nov 07, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Bugfix] 修复获取common settings时数据库问题
parent
b8874e18
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
utils.py
apps/common/utils.py
+6
-0
__init__.py
apps/terminal/backends/__init__.py
+0
-1
No files found.
apps/common/utils.py
View file @
2e4e5503
...
@@ -392,7 +392,10 @@ def get_command_storage_or_create_default_storage():
...
@@ -392,7 +392,10 @@ def get_command_storage_or_create_default_storage():
from
common.models
import
common_settings
,
Setting
from
common.models
import
common_settings
,
Setting
name
=
'TERMINAL_COMMAND_STORAGE'
name
=
'TERMINAL_COMMAND_STORAGE'
default
=
{
'default'
:
{
'TYPE'
:
'server'
}}
default
=
{
'default'
:
{
'TYPE'
:
'server'
}}
try
:
command_storage
=
common_settings
.
TERMINAL_COMMAND_STORAGE
command_storage
=
common_settings
.
TERMINAL_COMMAND_STORAGE
except
Exception
:
return
default
if
command_storage
is
None
:
if
command_storage
is
None
:
obj
=
Setting
()
obj
=
Setting
()
obj
.
name
=
name
obj
.
name
=
name
...
@@ -413,7 +416,10 @@ def get_replay_storage_or_create_default_storage():
...
@@ -413,7 +416,10 @@ def get_replay_storage_or_create_default_storage():
from
common.models
import
common_settings
,
Setting
from
common.models
import
common_settings
,
Setting
name
=
'TERMINAL_REPLAY_STORAGE'
name
=
'TERMINAL_REPLAY_STORAGE'
default
=
{
'default'
:
{
'TYPE'
:
'server'
}}
default
=
{
'default'
:
{
'TYPE'
:
'server'
}}
try
:
replay_storage
=
common_settings
.
TERMINAL_REPLAY_STORAGE
replay_storage
=
common_settings
.
TERMINAL_REPLAY_STORAGE
except
Exception
:
return
default
if
replay_storage
is
None
:
if
replay_storage
is
None
:
obj
=
Setting
()
obj
=
Setting
()
obj
.
name
=
name
obj
.
name
=
name
...
...
apps/terminal/backends/__init__.py
View file @
2e4e5503
...
@@ -3,7 +3,6 @@ from django.conf import settings
...
@@ -3,7 +3,6 @@ from django.conf import settings
from
.command.serializers
import
SessionCommandSerializer
from
.command.serializers
import
SessionCommandSerializer
from
common
import
utils
from
common
import
utils
from
common.models
import
common_settings
,
Setting
TYPE_ENGINE_MAPPING
=
{
TYPE_ENGINE_MAPPING
=
{
'elasticsearch'
:
'terminal.backends.command.es'
,
'elasticsearch'
:
'terminal.backends.command.es'
,
...
...
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