Skip to content

Commit

Permalink
fix: dashboard fake dead
Browse files Browse the repository at this point in the history
  • Loading branch information
Soulter committed Feb 5, 2024
1 parent 17948c5 commit 2c6df8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/dashboard/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,6 @@ def run(self):
ip_address = gu.get_local_ip_addresses()
ip_str = f"http://{ip_address}:6185\n\thttp://localhost:6185"
self.logger.log(f"\n==================\n您可访问:\n\n\t{ip_str}\n\n来登录可视化面板,默认账号密码为空。\n注意: 所有配置项现已全量迁移至 cmd_config.json 文件下,可登录可视化面板在线修改配置。\n==================\n", tag="可视化面板")
http_server = make_server('0.0.0.0', 6185, self.dashboard_be)
http_server = make_server('0.0.0.0', 6185, self.dashboard_be, processes=10)
http_server.serve_forever()

0 comments on commit 2c6df8d

Please sign in to comment.