Mark Lambley

Results 28 comments of Mark Lambley

Yes please! I'm hitting this issue right now. I have a module which does various things including fetching data, and it is used by all of my cests. I can...

@mikolajzieba Using [Extensions](https://codeception.com/docs/08-Customization#Extension) greatly enhances the functionality of codeception cests. Further to this, you can hack together your own [cest loader](https://codeception.com/docs/07-AdvancedUsage#Formats). Given that the loader is where the data provider...

I found a number of bugs with people passing in file:// which would make sense that it fails, but none where people are explicitly passing in file:/// I notice a...

This will be fixed by https://github.com/sabre-io/uri/pull/25 Sorry I checked issues but didn't check PRs. Once that is merged this ticket can be closed.

Looks like this is another duplicate of https://github.com/sabre-io/uri/pull/25 Peter's fix (removing the newlines from the beginning and end of the regex) seems to have fixed it. Once that is merged...

This PR will fix issues https://github.com/sabre-io/uri/issues/31 and https://github.com/sabre-io/uri/issues/32

Referring to https://github.com/renatocason/magento2-module-mq/issues/16 and https://github.com/renatocason/magento2-module-mq/issues/17 Also see PR's https://github.com/renatocason/magento2-module-mq-mysql/pull/5 and https://github.com/renatocason/magento2-module-mq-amqp/pull/6 Adding new features for maximum number of retries, and a delay interval before attempting to retry. For example, retry...

I don't think that will be enough. Sure I can say `int $maxRetries = 5, int $retryInterval = 0` in BrokerInterface, and do the same for the other interfaces, but...

Incorrect. This is done with the [skip option](https://www.apollographql.com/docs/react/api/react/hooks/#skip). In your case: ```js let { data: { actions = [] }, loading, error } = useQuery(GET_ACTIONS, { skip: true }) ```