Ruslan Stelmachenko

Results 86 comments of Ruslan Stelmachenko

I checked the code with `org.yaml:snakeyaml:1.33` and it doesn't complile as there is no `org.yaml.snakeyaml.LoaderOptions.setTagInspector` method and there is no `org.yaml.snakeyaml.inspector.TagInspector` interface in v1.33. I can bump the version of...

I localized the bug in this plunker http://plnkr.co/edit/CP5I0K67scavp7xOcol1?p=preview . Open it and click `Launch the preview in a separate window` button (There is no bug if you just open modal...

I agree that JSP Tags is old tech and should not be used for new projects, but it can be heavily used in old legacy spring projects still. If someone...

My config from WSL2 (Ubuntu 22.04): ``` # Respect default shortcuts. $include /etc/inputrc ### arrow up #"\e[A": history-search-backward # Works in Windows Terminal "\eOA": history-search-backward # Works in ConEmu ###...

Hello @ShadelessFox, 1. Here is the logs just after 2nd disconnet (step 10): [dbeaver-diagnostic-info-1715285599639.zip](https://github.com/dbeaver/dbeaver/files/15267341/dbeaver-diagnostic-info-1715285599639.zip) 2. Here is the logs after I tried to do some actions in this state (open...

I have a similar problem caused by this behavior. I have a Nitro middleware that calls `getServerSession(event)`. If an actual API handler also calls `getServerSession(event)`, then `useFetch()` doesn't read data...

I did a small research and discovered where this header is set. [This line](https://github.com/nextauthjs/next-auth/blob/124be4fb1f55bed46413a0ba941fc067671e07ce/packages/next-auth/src/core/routes/session.ts#L35) createas a session response. [This line](https://github.com/sidebase/nuxt-auth/blob/0bc80f7ecd52e5fac856104249ea98f45fddf974/src/runtime/server/services/authjs/nuxtAuthHandler.ts#L153) uses the response data to update the `event`. I don't...

Hello @phoenix-ru, thank you for you response! However, I reviewed your commits and I think that maybe you don't fully understand the problem. The main problem is not headers/cookies duplication,...