Pierce Lopez

Results 269 comments of Pierce Lopez

... also I think we may need to add an un-released version of nsqd to the test matrix, and mask the new tests with a build tag that we enable...

I'm unsure of this particular solution, because: * `@open_only` checks for both `eof_sent` and `eof_received`. stdin and stdout are independent. These send methods should probably only check eof_sent? * These...

I think this is due to using an RSA key - the original protocol for signing with the RSA key is to use sha1, but that's frowned upon now, and...

> There's no rough estimate when this might be fixed, right? Considering that I haven't really done any work on this project in the last 6 months, that's a good...

fab-classic should be pretty much fully compatible with original/upstream _paramiko_, and there's even a trick to making it explicitly depend on original/upstream _paramiko_ instead of _paramiko-ng_ if you need to...

Very interesting ... `__del__` is the destructor which is called automatically before the object (BufferedFile) is freed, possibly because the reference count decremented to zero. Was a logging argument the...

I don't think the logger instance was explicitly associated with the channel BufferedFile. It still seems to me like the python GC decided to "free" the BufferedFile at that point...

Normally, connections are removed from `Consumer.connections` in `Consumer.onConnClose()`, which does various other cleanup tasks, to keep things consistent. Are you having an issue where the tcp connection just hangs and...

When the connection has some error, including detecting TCP close, it goes through a sequence: https://github.com/nsqio/go-nsq/blob/master/conn.go#L640 that eventually calls `consumerConnDelegate.OnClose()`: https://github.com/nsqio/go-nsq/blob/master/conn.go#L725 That calls `Consumer.onConnClose()`: https://github.com/nsqio/go-nsq/blob/0e8d7a73ef5e81b6c3e2bdc4a9a5fb9afa44a36b/delegates.go#L121 In cases where a server...