Levin Rickert

Results 24 issues of Levin Rickert

I've started to use `get_path_with_query_string` for websockets logging as well to have a single place responsible for creating the path for logging. I don't know why this method wasn't used...

The following code raises the above error. ```python def auth_middleware(resolver, obj, info, **kwargs): value = resolver(obj, info, **kwargs) return value @graphql_api.route('/graphql', methods=["POST"]) def graphql_server(): success, result = graphql_sync( schema, request.json,...

bug
decision needed
docs

After switching from `pika` to `Kombu` and then to `aio-pika` I've discovered that `aio-pika` doesn't properly supported nested dicts inside headers like the other 2 libraries. Supporting it was quite...

Are you planning to keep maintaining this? The project wasn't touched for 3 months and #52 is still not fixed.

### Issue workflow progress _Progress of the issue based on the [Contributor Workflow](https://github.com/the-guild-org/Stack/blob/master/CONTRIBUTING.md#a-typical-contributor-workflow)_ - [x] 1. The issue provides a reproduction available on [GitHub](https://github.com/dotansimha/graphql-code-generator-issue-sandbox-template), [Stackblitz](https://stackblitz.com/github/dotansimha/graphql-code-generator-issue-sandbox-template) or [CodeSandbox](https://codesandbox.io/s/github/dotansimha/graphql-code-generator-issue-sandbox-template) > Make sure...

kind/bug
stage/1-reproduction

Using the command `import-sort --write "src/**/*.ts{,x}"`. .importsortrc ```json { ".ts, .tsx": { "parser": "typescript", "style": "module" } } ```

According to https://pnpm.io/cli/install `pnpm install` is used to install a whole project and not to add a single dependency. `pnpm add` should be used instead. I just tried to use...

`return_after` set to -1 can cause spontaneous high CPU usage by the Spotify client. Setting `return_after` to 0 fixes this. Timeout remains disabled.

TS ignores global `types` if in `bundler` mode. It needs to be explicitly noted in `exports` as well.

I need to reset Mixpanel (`mixpanel.reset()`) when a redirect to login is triggered due to an expired session. As I only initialize Mixpanel for authenticated users, the call to `mixpanel.reset()`...