ashelley

Results 10 comments of ashelley

I just ran into this problem myself... I believe it is because the asar has excluded directories from the .asar package and to successfully unpack it you need to have...

Hello, I'm also dealing with this issue. In order to facilitate retry logic when a socket error occurs I needed to add a patch to tedious to ensure that a...

@Reubend I think you already mentioned that you tried this but just wanted to reiterate the fact that you might need to ensure idle timeout on the connection pool is...

I haven't yet implemented this myself in node but i wonder if you are hitting azure sql transient errors: https://azure.microsoft.com/en-us/documentation/articles/sql-database-develop-csharp-retry-windows/

Transient errors on azure are typically "random" and not correlated to the number of requests. I've seen them happen as low as one time per day but sometimes they can...

I see you noticed this issue... I think it would also be better if we could do a bulk update set+insert where you can specify multiple key/value pairs at once...

@ds82 Thank you +1 Just used your fork to process some SVG that was breaking without your patches.

Hello I was having an issue with close not being called when these errors were happening for parser.on('error'): entry: ``` Error: invalid signature: 0xa at /var/www/test/unzip-test/node_modules/unzip/lib/parse.js:59:13 at processImmediate [as _immediateCallback]...

Hello, I was getting the "invalid code lengths set" error and cloning this repo solved my issue on node v0.10.33 https://github.com/AnkurMali/node-unzip thanks @AnkurMali

Hello it seems that unzip2 already has this problem solved as well which means you don't need to maintain a fork of the repo to fix this issue: https://github.com/glebdmitriew/node-unzip-2