Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
coco
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
coco
Commits
b6be2687
Commit
b6be2687
authored
May 18, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改小错误
parent
bd227a73
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
8 deletions
+2
-8
app.py
coco/app.py
+0
-1
interface.py
coco/interface.py
+1
-6
cocod
cocod
+1
-1
No files found.
coco/app.py
View file @
b6be2687
...
...
@@ -50,7 +50,6 @@ class Coco:
'HEARTBEAT_INTERVAL'
:
5
,
'MAX_CONNECTIONS'
:
500
,
'ADMINS'
:
''
,
'WORKERS'
:
4
,
'COMMAND_STORAGE'
:
{
'TYPE'
:
'server'
},
# server
'REPLAY_STORAGE'
:
{
'TYPE'
:
'server'
},
}
...
...
coco/interface.py
View file @
b6be2687
...
...
@@ -4,7 +4,6 @@
import
paramiko
import
threading
import
weakref
from
.utils
import
get_logger
from
.ctx
import
current_app
,
app_service
...
...
@@ -21,16 +20,12 @@ class SSHInterface(paramiko.ServerInterface):
"""
def
__init__
(
self
,
request
):
self
.
_request
=
weakref
.
ref
(
request
)
self
.
request
=
request
self
.
event
=
threading
.
Event
()
self
.
auth_valid
=
False
self
.
otp_auth
=
False
self
.
info
=
None
@property
def
request
(
self
):
return
self
.
_request
()
def
check_auth_interactive
(
self
,
username
,
submethods
):
logger
.
info
(
"Check auth interactive:
%
s
%
s"
%
(
username
,
submethods
))
instructions
=
'Please enter 6 digits.'
...
...
cocod
View file @
b6be2687
...
...
@@ -126,7 +126,7 @@ if __name__ == '__main__':
parser
.
add_argument
(
'action'
,
type
=
str
,
default
=
'start'
,
choices
=
(
"start"
,
"stop"
,
"restart"
,
"status"
),
help
=
"Action to
start_worker
"
help
=
"Action to
run
"
)
parser
.
add_argument
(
'-d'
,
'--daemon'
,
nargs
=
"?"
,
const
=
1
)
...
...
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