Mat Clayton
Mat Clayton
Of course! For context we’re using this for rtmp server. but I could see this also being useful in a game server context when combined with the player apis. We...
Interesting I was testing 4 and it didn’t, it appeared to change to http. I’ll check it again. `TRANS_BY_GPT3`
Thank you, we can confirm this works for basic use cases. However there is a bug with SNI based certificates (e.g. CloudFlare) as it connects to the ip address and...
We're seeing the exact same issue, enable_trampoline() fixed it
For sure ``` class GraphQLConfig(AppConfig): name = "mixcloud.core.graphql" label = "graphql" def ready(self) -> None: # This is dangerous # This is to counteract https://github.com/datadvance/DjangoChannelsGraphqlWs/blob/master/channels_graphql_ws/graphql_ws_consumer.py#L165 # DjangoChannelsGraphqlWs disables_trampoline, which by...
Any chance of getting this in? This package + Graphene_django have become a blocker for us upgrading to Django 4.x, however in this case it looks pretty compatible and is...
We really need this as well, we have some tidy up to do when a client disconnected on a per subscription based, right now we're trying to hack it together...
This is effectively what we've done, incase it helps someone ``` class GraphQLWsConsumer(channels_graphql_ws.GraphqlWsConsumer): async def disconnect(self, code: int) -> None: """ This handles firing off the unsubscribe functions on subscriptions...
Do you have any idea on what a preferred API would look like for these, we're working on an agsi layer which wraps the redis one and emits statsd data...
We really need this as well, and it is the only reason holding us back from using the traefik free or paid for solutions. We would also be looking for...