gc-ss
gc-ss
Current workaround for 1: ```Python def ensure_server_type_exists(token, server_type_name, server_location): server_type_name = server_type_name.lower() response = httpx.get(f'https://api.hetzner.cloud/v1/server_types?name={server_type_name}', headers={"Authorization": f"Bearer {token}"}) if response.status_code == HTTPStatus.OK.value: response = response.json() if response: _server_types = response.get('server_types',...
Code for validation: ```Python class SnapshotLabels: # Valid label values must be a string of 63 characters or less and must be empty # or begin and end with an...
> V2 should happen in 2021 Excited to have federation support!
I really appreciate providing this feedback!
I won't say I am by any means connected to the GQL world either but I am looking for a framework that lets me stitch together various independent services (subgraphs)...
It's possible the container network name is either different or misconfigured - docker compose could have modified the container network name behind the scenes. > I needed to add network_mode:...
> create example repo. a repo that will reproduce this error with just a `docker compose up` would really help, Thank You!
> I think a good medium here could be to introduce a new enviroment variable that allows additional origins. Like the idea! > Before updating, it patches the caddyfile admin...
Would it be fair to say that in this library, this line too falls in this trap: https://github.com/vmagamedov/grpclib/blob/a290e4138ef743396a4d08da3f9fba5f1ba6af0a/grpclib/client.py#L641
Thank you @smurfix I am currently using `python-trio` to interact with `asyncio` based `grpclib` (the details of it really is that I use `betterproto` and that in turn uses `grpclib`...