Alexander A. Prokhorov
Alexander A. Prokhorov
It still would be nice to have it.
JFYI, tried to use [bot test environment](https://core.telegram.org/bots/webapps#using-bots-in-the-test-environment), it does not work because of the URL construction. Telebot constructs URL as `url := b.URL + "/bot" + b.Token + "/" +...
I am not sure what `Settings.Offline` does, but it looks like it simply prevents a bot from connecting to the server. This is quite fine for testing, but for local...
As far as I see, v3 is not released yet. I see only [the beta version v3.0.0.b6](https://github.com/graphql-python/graphene/releases/tag/v3.0.0b6) available. Once the final/stable release is here, I will try to migrate `DjangoChannelsGraphqlWs`...
As far as I see, Graphene v3 is still in beta. We will proceed as soon as stable version is here.
@alexmnazarenko Considering this thread-safe issue as fixed we can probably throw away invocation of `disable_trampoline()`. We need to be careful here, AFAIR it took significant about of time to debug...
@meshelton What are you trying to achieve? What is the purpose?
Dear @jordanmarkov, `GraphqlWsConsumer` has `on_connect` method to handle the connection event. Probably we should add `on_disconnect` there to handle disconnect, e.g. to cleanup something. What do you think? Will this...
Dear @darrint, I've spent a whole day & night digging in the code of graphene-django, graphql-core, and promise, to understand why the multithreaded execution strategy on my [GraphQL Websocket server](https://github.com/datadvance/DjangoChannelsGraphqlWs)...
I would also like to bring @syrusakbary attention here. I think the thread-safety issue is a significant one cause it may silently affect many projects which use this promise library....