Petr Kopac

Results 8 comments of Petr Kopac

@QuentinPerez: IDK about the keep-alive, but the `resp.Body.Close()` is certainly not correct in current code; it only gets invoked on the `NopCloser`, which... does nothing. So, the `Reader` from `http`...

@plpan: thanks, makes sense... but, if you don't reuse all instances (eg. we don't in our code), then it leaks. So I still consider this a bug.

Hi! I've just tried a variant of your code example **with time measuring and multiple promises** locally and... it really doesn't work (python 3.6): _Bug 1: `Promise(func)` executes immediately and...

OK, @chtseac commented https://github.com/chartmogul/chartmogul-python/issues/18#issuecomment-364641641 about `promisify`, so I tried it again: ```python def getDataPromisify(url): def func(): urllib.request.urlopen(url).read() return Promise.promisify(func)() ... print("Executing promises") l = [] for x in range(0, 3):...

Thanks, @Twistedpear , for the update of versions. AWS should update this stuff more often, since Kinesis is cool service, but without up-to-date & fixed libs it can't be used....

Hi everyone! I think we may have run into the same problem, even though it's a bit different. We are running a producer version 0.10.0. The CPU usage remains low,...

Thanks for your replies! Well, our application is just on one shard and has a really low data flow, so it's probably hard to replicate (once in a week error?)....

Upgrading from Rails 7.0.x to 7.1.3.4 I am seeing the same problem. The SQL query is generated the same, but the data is interpreted wrongly, leading to duplications. `includes` is...