Ellis Percival

Results 26 issues of Ellis Percival

I want to look up a bucket by name and create it if it doesn't exist. Something like the following pseudocode: ```go bucket, err := client.BucketsAPI().FindBucketByName(ctx, "mybucket") if err !=...

Applies the query_params to the plural field as well. A more ideal solution might be to separate out the singular and plural query helpers, as some query params might not...

status: Needs documentation

Please could you provide an example `tox.ini` to help explain how to use this plugin? I'm struggling to get tox to use pipenv instead of pip. Cheers

enhancement
help wanted
good first issue

In the line from the readme: ```python users3 = DjangoListObjectField(UserListType, filterset_class=UserFilter, description='All Users query') ``` you reference `UserFilter` but that isn't imported or created anywhere in the example.

Our GraphQL schema uses snake_case, so we have `auto_camelcase` switched off: ```python schema = graphene.Schema(query=Query, mutation=Mutation, auto_camelcase=False) ``` This works fine for everything except for the `totalCount` field since it's...

Is there a reason `_attributes` should not be publicly accessible? It's useful for me to get this out as a dict. I guess there's a reason to not allow external...

Calling `client.subscribe([])` should fail/return immediately, but it gets passed on to the paho client, which happily subscribes to no topics. The `client.subscribe` function then sets up a callback to wait...

good first issue

Here I've used `` and `_` styling: https://github.com/flyte/pi-mqtt-gpio/blob/d49d599c6f2f04ba0c6c31c214fd0f49746cc170/config-doc.md Here I've only used the `_` styling: https://github.com/flyte/pi-mqtt-gpio/blob/e9be6b2056a2bedca8189729abd15e7ed645b839/config-doc.md And here I've removed the `_` styling and it works: https://github.com/flyte/pi-mqtt-gpio/blob/c9227fc9bc3abc2e87cb02a034acaa7b972fd60f/config-doc.md

bug
help wanted

Sometimes the `X-Forwarded-For` header isn't the one that contains the real user's IP address. For example, if you're behind a CloudFlare proxy, the header you want to use is `CF-Connecting-IP`....

# Rationale Currently, messages are [limited to a size of 15MB](https://github.com/ethereum/go-ethereum/blob/51ececb64e9cacaaa9b736b5bc2455225d061edb/rpc/websocket.go#L41) using a `wsMessageSizeLimit = 15 * 1024 * 1024` constant. It would be helpful if this would be configurable...

type:feature