On Tue, Jul 7, 2009 at 8:07 PM, wrote:
>
> On 07:54 am, j...@mumak.net wrote:
>>Hello all,
>>
>>With some trepidation and a complete willingness to fail, I'm offering
>>my services as Twisted release manager, starting Tuesday next week.
>
> Hooray!
>>I have only two questions:
>> - Am I accepted?
On Thu, Jul 9, 2009 at 1:26 PM, wrote:
>
> On 8 Jul, 04:31 am, j...@mumak.net wrote:
>>
>> I've recently returned from EuroPython where I got a chance to work
>> with Thomas Hervé on Twisted. In the giddy rush of success I thought,
>> "Wouldn't it be great if we could get a whole week to do this?"
Hi,
I went through several posts and blogs regarding long lived transactions in
twisted.
Some of them are
-A bug with current status won't fix.
http://twistedmatrix.com/trac/ticket/303
-Laxdb from sandbox.
http://archives.free.net.ph/message/20050831.235536.440061b8.en.html#t
Hello,
is there any way to cancel the Deferred callback in those examples?
1.
d = defer.Deferred()
d.addCallback(methodA).addErrback(methodErr)
d.callback(None)
2.
d = methodB().addErrback(methodErr)
wfd = defer.waitForDeferred(d)
Appreciate any help.
___
On Tue, 14 Jul 2009 11:10:10 -0400, vit...@synapticvision.com wrote:
>Hello,
>
>is there any way to cancel the Deferred callback in those examples?
>
>1.
>d = defer.Deferred()
>d.addCallback(methodA).addErrback(methodErr)
>d.callback(None)
>
>2.
>d = methodB().addErrback(methodErr)
>wfd = defer.wai
Thank you,
"cancel" callback - stop running now what you've been asked to exec.
Example: some SQL query that takes 5 min and I need to cancel it
anywhere in the middle and it, of course, it doesn't matter what the
result set.
As far as I see from base.py and client.py, some sort of timeout no
Hi,
On Tue, Jul 14, 2009 at 2:54 AM, Jonathan Lange wrote:
> 1. If you are attending, add your name; if you are attending subject
> to other conditions (funding, leave etc) then add your name & say
> 'tentative'; if you are _not_ attending, add your name to the not
> attending list.
I logged into
On Tue, 14 Jul 2009 11:33:03 -0700, Jamu Kakar wrote:
>Hi,
>
>On Tue, Jul 14, 2009 at 2:54 AM, Jonathan Lange wrote:
>> 1. If you are attending, add your name; if you are attending subject
>> to other conditions (funding, leave etc) then add your name & say
>> 'tentative'; if you are _not_ attendi
vit...@synapticvision.com writes:
> "cancel" callback - stop running now what you've been asked to exec.
> Example: some SQL query that takes 5 min and I need to cancel it
> anywhere in the middle and it, of course, it doesn't matter what the
> result set.
Note that the Deferred itself has no