From 842d7980a6bafce65ffcb9f3812b6d0b211807ea Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Tue, 13 Apr 2021 17:22:28 -0500 Subject: [PATCH] Remove old comment about await in loop --- ts/sql/Server.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ts/sql/Server.ts b/ts/sql/Server.ts index 3ae74bd3eb..ff0287d553 100644 --- a/ts/sql/Server.ts +++ b/ts/sql/Server.ts @@ -1663,7 +1663,6 @@ function updateSchema(db: Database): void { for (let index = 0; index < maxUserVersion; index += 1) { const runSchemaUpdate = SCHEMA_VERSIONS[index]; - // Yes, we really want to do this asynchronously, in order runSchemaUpdate(userVersion, db); } }