mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-29 02:23:56 +08:00
如果已经配置了auth_key,则不使用uuid生成; 适配单模块启动,防止每次服务重启设备都无法连接问题
This commit is contained in:
@@ -51,6 +51,7 @@ async def main():
|
|||||||
# auth_key用于jwt认证,比如视觉分析接口的jwt认证
|
# auth_key用于jwt认证,比如视觉分析接口的jwt认证
|
||||||
auth_key = config.get("manager-api", {}).get("secret", "")
|
auth_key = config.get("manager-api", {}).get("secret", "")
|
||||||
if not auth_key or len(auth_key) == 0 or "你" in auth_key:
|
if not auth_key or len(auth_key) == 0 or "你" in auth_key:
|
||||||
|
if not config["server"]["auth_key"]:
|
||||||
auth_key = str(uuid.uuid4().hex)
|
auth_key = str(uuid.uuid4().hex)
|
||||||
config["server"]["auth_key"] = auth_key
|
config["server"]["auth_key"] = auth_key
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user