Melvin Koh
Melvin Koh
Today, an event with multiple local handlers registered can interfere with each other as all handlers are given the same shared copy of events. For instance, ``` # anywhere in...
Hi, I couldn't quite figure out how to un-spy a spied method yet. I'm not sure if it's even possible after browsing through the source code. ```python spy_foo = mocker.spy(module,...
As titled, a referenced PR can be found here: https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1229
I'm using Graphene with Django, and I have a middleware that checks user auth token. I'm having an issue with the middleware being executed at the field-level. Each field resolution...
As titled, need to ensure all tests pass in Python 3.12
Hi, I'm trying to use AsyncOAuthSettings with SQLAlchemyOAuthStateStore. However, I stumbled upon this error and found out that SQLAlchemyOAuthStateStore doesn't support async operations: ``` File "/usr/local/lib/python3.10/site-packages/slack_bolt/oauth/async_oauth_flow.py", line 167, in handle_installation...
PR #27 largely reduced Disk I/O and unnecessary calculations of MD5. However, from cProfiler stats, I learnt that I can further reduce runtime by reducing number of calls to `S3.get_metadata()`...
With `graphene==3.0b1` being released, we can start looking into the integration with it. For `graphql-utilities` to work with `graphene>=3.0`, we need to solve these issues: - [ ] How to...