Kenji Pa

Results 7 comments of Kenji Pa

@jcwilson That's probably caused by `# noqa` ignoring _all_ errors, as mentioned in the [error suppression page](http://prospector.landscape.io/en/master/suppression.html#noqa). It seems to me that currently there are no ways to turn of...

@carlio Thanks a lots for the pointers! I will see if I can get something out over the weekend.

For me, on certain platform (in my case android) and for certain images, the image width and height reported by `Image.onLoad` callback is different from the actual size of the...

Exactly same issue here. Can confirm that setting timeouts as @jaroslawporada described works. Specifically, I set only `socket_timeout` and `socket_connect_timeout` in `broker_transport_options`, but not `redis_socket_connect_timeout` (because I do not use...

@sander76 Which version are you on? Currently the latest version without this bug is 5.2.2 for _both_ celery and kombu. Verified to work in multiple private projects I have access...

If your app doesn't rely on Buffer, you could polyfill the global Buffer name to workaround it: ```js class FakeBuffer {} if (typeof Buffer === 'undefined') global.Buffer = FakeBuffer; ```...