fix: Update SQLite database URL for async connection

The example is broken without the fix.

Co-authored-by: Liang Wu <wuliang@google.com>
PiperOrigin-RevId: 843424168
This commit is contained in:
Liang Wu
2025-12-11 16:42:10 -08:00
committed by Copybara-Service
parent ee9b4ca908
commit 60e314a78f
@@ -32,7 +32,7 @@ logs.log_to_tmp_folder()
async def main():
app_name = 'migrate_session_db_app'
user_id_1 = 'user1'
session_service = DatabaseSessionService('sqlite:///./sessions.db')
session_service = DatabaseSessionService('sqlite+aiosqlite:///./sessions.db')
artifact_service = InMemoryArtifactService()
runner = Runner(
app_name=app_name,