pombreda / gaeunit

Automatically exported from code.google.com/p/gaeunit
0 stars 0 forks source link

AssertionError: No api proxy found for service "logservice" #46

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago

Ths error appears regularly (in dev env, didn't tried for production) if using 
heavy logging, when gae tries to flush logging.

To correct (rev 1.2.8), this change is enough:

Line 293:
       for name in ['user', 'urlfetch', 'mail', 'memcache', 'images']: 

Change to:
       for name in ['user', 'urlfetch', 'mail', 'memcache', 'images','logservice']: 

Original issue reported on code.google.com by agra.jo...@gmail.com on 12 Apr 2013 at 9:53

GoogleCodeExporter commented 9 years ago
I've recently run into this and it seems to be due to the new dev_appserver 
(1.7.6+). The old_dev_appserver still runs the unpatched gaeunit.

agra's patch worked for me on 1.7.7

Original comment by mctrust...@gmail.com on 3 May 2013 at 6:20