dispatch_on bug?

2008-06-08 Thread IQDoctor
exception raised in pylons.decorators.rest.dispatch_on -- debug output - alt_method = getattr(self, alt_method) log.debug(Dispatching to %s instead, alt_method) return self._inspect_call(alt_method, **kwargs) return func(self,

Re: dispatch_on bug?

2008-06-08 Thread IQDoctor
Pylons0.9.7 beta4 -- Best regrads, IQDoctor --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To unsubscribe from this

initialise session in functional test

2008-06-08 Thread Wichert Akkerman
Does anyone have tips or example code for getting some test data into a (beaker) session so a controller that's being tested can pick that up? Wichert. -- Wichert Akkerman [EMAIL PROTECTED]It is simple to make things. http://www.wiggy.net/ It is hard to make things

Re: Pylons and memory use

2008-06-08 Thread Garland, Ken R
I'm using WebFaction with a decent size app and using the 80MB plan. every once in a while I forget and leave paster in --reload instead of --daemon while I'm developing and it grows to about 100MB. They are nice about sending a reminder and a trouble ticket instead of charging me, but the last

Re: Pylons and memory use

2008-06-08 Thread Damjan
cat /proc/pid/status will give you a lot of information about memory usage. ex: ... VmPeak: 2316 kB VmSize: 2212 kB VmLck: 0 kB VmHWM: 940 kB VmRSS: 936 kB VmData: 164 kB VmStk:84 kB VmExe:12 kB VmLib: 1876 kB VmPTE:20 kB ... On Jun

Re: Pylons and memory use

2008-06-08 Thread Brandon Singer
On Sun, 2008-06-08 at 11:22 -0400, Garland, Ken R wrote: I'm using WebFaction with a decent size app and using the 80MB plan. every once in a while I forget and leave paster in --reload instead of --daemon while I'm developing and it grows to about 100MB. They are nice about sending a

[ANN] ToscaWidgets 0.9.2 has been released

2008-06-08 Thread Alberto Valverde
Hi all, We've just released ToscaWidgets 0.9.2. Here's the changelog [1]: 0.9.2 (Jun 8, 2008) -- * Template engine plugins are now loaded lazily. * The v=modfied_time query string argument is no longer appended to resources since this method is not reliable with zipped

Re: Pylons and memory use

2008-06-08 Thread Garland, Ken R
Sure, #!/bin/bash mode=`ps -u garlandkr -o rss,etime,pid,command | awk '/paster/ !/awk/ {sub(--,);print$7}'` if [ $mode = daemon ]; then echo daemon mode elif [ $mode = reload ]; then echo reload mode python ~/mailer.py WebFaction Issue Paster is running in reload mode, fix it. fi