const reportError = (connect: () => Promise<void>) => async () => {
    try {
      await connect()
    } catch (e: any) {
      this.log.warn({ err: e }, 'Failed to connect to cassandra')