await retry()

in src/db/index.ts [48:55]


  await retry(async () => {
    await Promise.race([
      getSchema(conn),
      new Promise((_res, rej) =>
        setTimeout(() => rej('failed to reach the db in 1000ms'), 1000),
      ),
    ]);
  }, options);