Re: [Twisted-Python] IMAP4 fetch optimization

2010-10-18 Thread exarkun
Please file a ticket in the issue tracker and attach a patch there. Patches sent to the list will just get forgotten about. Thanks. Jean-Paul ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com

Re: [Twisted-Python] connectionLost never reached after calling loseConnection: stuck in CLOSE_WAIT forever

2010-10-18 Thread Stefano Debenedetti
Hello Jean-Paul, thanks for looking into this. What did make a difference was to comment this line, the problem never happens without it: to.transport.registerProducer(_from.transport, True) This suggests that your problem is that you don't unregister the produce. The connection can never

Re: [Twisted-Python] connectionLost never reached after calling loseConnection: stuck in CLOSE_WAIT forever

2010-10-18 Thread exarkun
On 03:21 pm, s...@demaledetti.net wrote: Hello Jean-Paul, thanks for looking into this. What did make a difference was to comment this line, the problem never happens without it: to.transport.registerProducer(_from.transport, True) This suggests that your problem is that you don't unregister the

[Twisted-Python] Getting a list of services and/or plugins are currently running

2010-10-18 Thread Elizabeth Liao
Hi all, I'm looking for a way to get a list of services and/or plugins that currently running on a machine. Does anyone have any suggestions on how to do that? Thanks. Liz ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com

Re: [Twisted-Python] Getting a list of services and/or plugins are currently running

2010-10-18 Thread Glyph Lefkowitz
On Oct 18, 2010, at 1:41 PM, Elizabeth Liao wrote: Hi all, I'm looking for a way to get a list of services and/or plugins that currently running on a machine. Does anyone have any suggestions on how to do that? Thanks. Liz This question is a bit too vague to be answered with any

Re: [Twisted-Python] Getting a list of services and/or plugins are currently running

2010-10-18 Thread Marcus.CM
Hi Elizabeth, What kind of services/plugins are you referring to? And is your platform you are referring to is an OS (windows/linux/mac) ? Elizabeth Liao wrote: Hi all, I'm looking for a way to get a list of services and/or plugins that currently running on a machine. Does anyone

Re: [Twisted-Python] Getting a list of services and/or plugins are currently running

2010-10-18 Thread Elizabeth Liao
Sorry about that. I just started using twisted so I'll try to be more specific. We have 2 different twisted plugins that uses shared code. Each of these plugins is run as a TCPClient on separate machines. What would like to do is to somehow identify what twisted services/plugins are

Re: [Twisted-Python] Getting a list of services and/or plugins are currently running

2010-10-18 Thread Glyph Lefkowitz
On Oct 18, 2010, at 3:10 PM, Elizabeth Liao wrote: Sorry about that. I just started using twisted so I'll try to be more specific. We have 2 different twisted plugins that uses shared code. Each of these plugins is run as a TCPClient on separate machines. What would like to do is

Re: [Twisted-Python] Getting a list of services and/or plugins are currently running

2010-10-18 Thread Johann Borck
On 10/18/2010 09:10 PM, Elizabeth Liao wrote: [...] What would like to do is to somehow identify what twisted services/plugins are running because different things happen depending on what plugin is currently in use. We are running on Linux wanted to see if there was an easy way of doing

Re: [Twisted-Python] Getting a list of services and/or plugins are currently running

2010-10-18 Thread Itamar Turner-Trauring
On Mon, 2010-10-18 at 22:28 +0200, Johann Borck wrote: If I wanted to implement this, I'd start with a central service, that offers an interface for (twisted) apps/clients/servers to register themselves on startup. All participating plugins and services would of course have to know about that