From bff26de5ca740c55a6cb84c46e93a2f2df0730f5 Mon Sep 17 00:00:00 2001 From: pipeline-agent Date: Sun, 30 Aug 2026 08:30:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20DBPools=E5=AF=BC=E5=85=A5=E6=94=B9=20sql?= =?UTF-8?q?or.dbpools?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scense_runtime/runtime_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scense_runtime/runtime_service.py b/scense_runtime/runtime_service.py index 1c3037f..fdac45d 100644 --- a/scense_runtime/runtime_service.py +++ b/scense_runtime/runtime_service.py @@ -93,7 +93,7 @@ async def load_world_runtime(world_id): if not world_id: return {'ok': False, 'message': 'world_id is required', 'data': None} try: - from sqlor import DBPools + from sqlor.dbpools import DBPools from ahserver import ServerEnv except Exception as exc: return _degraded(world_id, 'backend import unavailable: ' + str(exc))