[google-appengine] Re: New experimental development server for Python

2013-04-23 Thread michael kariv
@Brian Quinlan, I have installed 1.7.7. I have read through the document. The document gives us hope, because as of now PyDev debugging (setting a breakpoint in the app code) does not work. I have tried to implement the document, and so far I can connect remote debugger to the instance and see

[google-appengine] Re: New experimental development server for Python

2013-03-11 Thread Brian Quinlan
We have released a new version of the Python development server. A descendant of this version will be included in the App Engine 1.7.7 SDK release so any testing or other feedback would be greatly appreciated! To download the cross-platform package for Python:

[google-appengine] Re: New experimental development server for Python

2013-02-26 Thread pdknsk
I can only recommend to try it. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To post to this group, send

[google-appengine] Re: New experimental development server for Python

2013-02-24 Thread Brian Quinlan
We have released a new version of the Python development server. This version will be included in the App Engine 1.7.6 SDK release so any testing or other feedback would be greatly appreciated! Aside from a long list of bug fixes, this version adds experimental Go support! To download the

Re: [google-appengine] Re: New experimental development server for Python

2013-02-18 Thread Jacob Gur
I figured out the problem with port_sqlite on dev_appserver. Google's documentation here is wrong: https://developers.google.com/appengine/docs/python/tools/devserver#Using_the_Datastore The following step from their instructions should be deleted: cp /tmp/dev_appserver.datastore

[google-appengine] Re: New experimental development server for Python

2013-02-08 Thread Jacob G
Hi Brian, This new development server sounds very exciting. I haven't had a chance yet to try it, but I look forward to checking out all these great features. One question I have is regarding your bullet point Add automatic conversion from the datastore file stub to the sqlite stub. Does this

Re: [google-appengine] Re: New experimental development server for Python

2013-02-08 Thread Brian Quinlan
On Sat, Feb 9, 2013 at 1:31 AM, Jacob G ja...@fareclock.com wrote: Hi Brian, This new development server sounds very exciting. I haven't had a chance yet to try it, but I look forward to checking out all these great features. One question I have is regarding your bullet point Add automatic

[google-appengine] Re: New experimental development server for Python

2013-02-05 Thread Brian Quinlan
We have released a new version of the new Python development server. This development server will replace the existing one in the 1.7.6 release so we'd greatly appreciate any feedback. To download: https://code.google.com/p/appengine-devappserver2-experiment/downloads/ Features: - Add a

Re: [google-appengine] Re: New experimental development server for Python

2013-01-23 Thread Jeff Schnitzer
Do background threads work? Whenever I try to start one, I get BackgroundThreadLimitReachedError. Jeff On Sun, Jan 20, 2013 at 11:11 PM, Brian Quinlan bquin...@google.com wrote: We have released a new version of the experimental Python development server. We think that it is very usable at

Re: [google-appengine] Re: New experimental development server for Python

2013-01-23 Thread Brian Quinlan
That should work. Are you creating a background thread on a frontend or a backend instance? Cheers, Brian On Thu, Jan 24, 2013 at 6:38 AM, Jeff Schnitzer j...@infohazard.org wrote: BackgroundThreadLimitReachedError -- You received this message because you are subscribed to the Google

Re: [google-appengine] Re: New experimental development server for Python

2013-01-23 Thread Jeff Schnitzer
It's a resident backend. Jeff On Wed, Jan 23, 2013 at 3:50 PM, Brian Quinlan bquin...@google.com wrote: That should work. Are you creating a background thread on a frontend or a backend instance? Cheers, Brian On Thu, Jan 24, 2013 at 6:38 AM, Jeff Schnitzer j...@infohazard.org wrote:

Re: [google-appengine] Re: New experimental development server for Python

2013-01-23 Thread Brian Quinlan
On Thu, Jan 24, 2013 at 1:41 PM, Jeff Schnitzer j...@infohazard.org wrote: It's a resident backend. Jeff Are you sure that this happens on the first attempt to create a background thread? If so, then could you could try to find this block in

[google-appengine] Re: New experimental development server for Python

2013-01-20 Thread Brian Quinlan
We have released a new version of the experimental Python development server. We think that it is very usable at this point and has some significant improvements over the existing version. To download:

[google-appengine] Re: New experimental development server for Python

2012-12-19 Thread Sam McNally
We have released a new version. Download it from http://code.google.com/p/appengine-devappserver2-experiment/downloads/detail?name=devappserver2-v0.4.zip New in this version: - backends with support for background threads - admin UI for cron, datastore indexes and inbound mail - improved

Re: [google-appengine] Re: New experimental development server for Python

2012-12-13 Thread Brian Quinlan
Hi PK, Thanks for the bug description! We understand the cause (the lack of the dev~ prefix on app ids) and will fix it soon [1]. Cheers, Brian [1] soon may not be that soon due to the holidays :-) On Wed, Dec 12, 2012 at 5:47 PM, PK p...@gae123.com wrote: Great... Thanks!! More regression

[google-appengine] Re: New experimental development server for Python

2012-12-11 Thread Brian Quinlan
We have released a new version of the development server: To download: http://code.google.com/p/appengine-devappserver2-experiment/downloads/detail?name=devappserver2-v0.3.zip Changes: - threads are implicitly joined on request exit - basic taskqueue UI (more later) - fixes for virtualenv -

Re: [google-appengine] Re: New experimental development server for Python

2012-12-11 Thread PK
Great... Thanks!! More regression tests pass now but one of them fails with the message below. I am on 1.7.3, all my tests pass with the regular dev server. BadRequestError: remote_api supports transactional queries only in the high-replication datastore. Is this something consistent with the

Re: [google-appengine] Re: New experimental development server for Python

2012-12-11 Thread PK
I looked in more detail the stack trace and hits an issue I had seen before that was fixed when bug 3643 was fixed. The bug was fixed in 1.7.2, I am wondering whether you could have forked some code before that fix went in? On Dec 11, 2012, at 10:47 PM, PK p...@gae123.com wrote: Great...

[google-appengine] Re: New experimental development server for Python

2012-11-28 Thread Kaan Soral
Great to hear :) I will also test it out some time. Now we can finally test our apps on all browsers before production. On Tuesday, November 27, 2012 4:15:46 AM UTC+2, Brian Quinlan wrote: Hi, I'm happy to announce that the App Engine team is working on a new development server for