Browse Source

修改服务端口号

liyuyi@c-top.com.cn 4 years ago
parent
commit
a1c38f02b6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ai_ads_main.py

+ 1 - 1
ai_ads_main.py

@@ -29,7 +29,7 @@ def create_application():
 if __name__ == "__main__":
     application = create_application()
     http_server = tornado.httpserver.HTTPServer(application)
-    http_server.bind(31012, None)
+    http_server.bind(31018, None)
     if platform.system() == 'Windows':
         http_server.start()
     else: