Commit b6be2687 authored by ibuler's avatar ibuler

[Update] 修改小错误

parent bd227a73
......@@ -50,7 +50,6 @@ class Coco:
'HEARTBEAT_INTERVAL': 5,
'MAX_CONNECTIONS': 500,
'ADMINS': '',
'WORKERS': 4,
'COMMAND_STORAGE': {'TYPE': 'server'}, # server
'REPLAY_STORAGE': {'TYPE': 'server'},
}
......
......@@ -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.'
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment