Ellis Percival

Results 89 comments of Ellis Percival

Sorry to do this twice in one day, but this is also still an issue in the latest version! I'm struggling to work out how to add filters to the...

I just noticed that there's already a singular helper, and that I hadn't made the same change to the paginated helper. Please don't merge yet, as I'll make this missing...

OK, I've reverted `register_query_field()` to its original behaviour and added `register_plural_query_field()`. There's quite a lot of duplicated code in these helpers, which isn't necessarily bad, but they do have some...

I'm not sure what to put for `deps` since it's no longer `-r requirements.txt`. Will pipenv automatically use `Pipfile.lock` if I leave it blank?

As a side note, does this callback mechanism support multiple subscriptions? Does paho call back with once per subscribed topic, or once per invocation of `self._client.subscribe()`?

I've just noticed that it's doing this for me as well. I have my `RANCHER_ACCESS_KEY` and `RANCHER_SECRET_KEY` env vars set, then whenever I run a `terraform plan` (or apply) it...

I see why it's creating them now. It returns a generated `kube_config` from the `rancher2_cluster` data block. Perhaps this should be configurable (generate credentials, expiry etc.) and by default not...

Having come from Python where we have the OG Trio and AnyIO for structured concurrency, I'd prefer that the `Nursery` name stays consistent with Trio. AnyIO uses `TaskGroup` though if...

> I was able to solve this issue Could you please let us know what you did to solve the issue?

Of course I solve it 5 minutes after asking for help! I was missing the port from the `addrs` section: ```yaml redis: addrs: - my-redis-master:6379 ``` now works :tada: