onValidate({ config }) {
        const { maxTime } = config
        if (Number.isInteger(maxTime) === false) {
            throw new Error(`MaxTime.maxTime is not a valid number, got: ${maxTime}`)
        }