This commit is contained in:
pengtao 2021-09-06 14:36:54 +08:00
parent adf3915012
commit 3e509b75d8

1
web.py
View File

@ -42,6 +42,7 @@ class DispatchHandler(tornado.web.RequestHandler):
elif self.get_query_argument('c') == 'Deploy' and self.get_query_argument('a') == 'keys': elif self.get_query_argument('c') == 'Deploy' and self.get_query_argument('a') == 'keys':
yield self._selfdeploykeys() yield self._selfdeploykeys()
else: else:
log.error(f"get args {self.get_query_argument('a')}")
self.write("pls check args!") self.write("pls check args!")
@gen.coroutine @gen.coroutine