ejose19

Results 38 comments of ejose19

Since you mention purging, will the cache size be an option (or even the disabling the purging)? I'm sure for those using `electrs` for just personal wallet only, the performance...

I've noticed this as well, and I agree that both `--context` and `--context-sub-path` needs fixing, as they're not working as expected. Some examples of the issue with the default `/workspace`...

Hello @kreosus, I just tried with `2022.5.1` but nothing has changed. I created 2 environments and when one gets a cookie the other also uses it, they're not separated and...

This should be handled by the library here: https://github.com/mysticatea/npm-run-all/blob/bf91f94ce597aa61da37d2e4208ce8c48bc86673/lib/run-task.js#L157 something like: ```js // Required due to changes in npm@7+ let defaultNpmPath = process.env.npm_execpath; if (defaultNpmPath && defaultNpmPath.endsWith('npx-cli.js')) { defaultNpmPath.replace(/npx-cli\.js$/, 'npm-cli.js');...

I confirm this bug, just having a nginx file and saving will trigger the displayed error. I resolved it using: ```json "shellformat.effectLanguages": [ "shellscript", "dotenv", "hosts", "jvmoptions", "ignore", "gitignore", "spring-boot-properties",...

Server should respond with an expired date to clear the cookies in the browser. This should be expected behavior when setting ctx.session = null; @cmur2 your solution didn't work for...

@lastHelp Your solution works great, all other "workarounds" involves too much hacking to get the session, but using .initFromExternal reuses everything already configured. One note regarding types, I had to...

@dead-horse Any updates on when this fix will be merged?

Yes, you can use secure: false, however you would need to change that on production. It's better to set up nginx to redirect traffic to your app so you work...

Well, from what I saw the buffer is only used (as adding packets) when the socket is not connected, so were it would be an issue? If the user explicitly...