[google-appengine] Re: Site not working after update

2010-10-11 Thread Jamie H
yes i cannot deploy right now

On Oct 11, 8:21 pm, Andrew  wrote:
> Hello,
>
> could someone from google have a look at site: bidshapeauction
>
> Site stopped working after update, the same code works fine on other
> app ids. We are getting different errors:
>
> : cannot import name signals
> or
> BadValueError: Property starttime is required
>
> Site is really slow to load.
>
> On google app engine I see anomaly with Memcache, anyone having issues?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Site not working after update

2010-10-11 Thread Tim Hoffman
Hi

For this error  BadValueError: Property starttime is required
it looks like you have changed your model to make starttime required
and your trying to retrieve and entity that doesn't have a value for
starttime. You will need to fix your entities if you want that
property required.

The import error will be because you have a broken instance (failed on
startup with DeadlineExceeded and can't run now due to the failed
imports) or
you  haven't got a signals.py somewhere ;-)

T

On Oct 12, 9:21 am, Andrew  wrote:
> Hello,
>
> could someone from google have a look at site: bidshapeauction
>
> Site stopped working after update, the same code works fine on other
> app ids. We are getting different errors:
>
> : cannot import name signals
> or
> BadValueError: Property starttime is required
>
> Site is really slow to load.
>
> On google app engine I see anomaly with Memcache, anyone having issues?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Site not working after update

2010-10-14 Thread Anand
Tim

Regarding

The import error will be because you have a broken instance (failed
on
startup with DeadlineExceeded and can't run now due to the failed
imports) or
you  haven't got a signals.py somewhere ;-)

I am getting lots of ImportError and DeadlineExceedError now on my
application (nilgiriapp). In fact from yesterday evening that's the
only thing I am getting on my application. So my question is if how do
we come out from this situation? I have tried switching version and
that did not help.

Thanks for your help.

Thanks,
Anand.

On Oct 12, 11:49 am, Andrius A  wrote:
> Thanks for your help guys! Site deployment finally worked! Jamie, is it
> working for you as well?
>
> Would be nice to get response from google, since dont know if site
> deployment fixed automagically or someone from google did something. Code
> bugs should not block the site deployment process.
>
> On 12 October 2010 08:45, Andrius A  wrote:
>
>
>
> > Thanks Tim, you are right, i made changes by wrapping model with timezones
> > which is returning starttime as null. Its easy to fix, but deployment doesnt
> > work anymore! Its stuck for waiting when new deployed site will become
> > available..
> > On 12 Oct 2010 07:55, "Tim Hoffman"  wrote:
> > > Hi
>
> > > For this error BadValueError: Property starttime is required
> > > it looks like you have changed your model to make starttime required
> > > and your trying to retrieve and entity that doesn't have a value for
> > > starttime. You will need to fix your entities if you want that
> > > property required.
>
> > > The import error will be because you have a broken instance (failed on
> > > startup with DeadlineExceeded and can't run now due to the failed
> > > imports) or
> > > you haven't got a signals.py somewhere ;-)
>
> > > T
>
> > > On Oct 12, 9:21 am, Andrew  wrote:
> > >> Hello,
>
> > >> could someone from google have a look at site: bidshapeauction
>
> > >> Site stopped working after update, the same code works fine on other
> > >> app ids. We are getting different errors:
>
> > >> : cannot import name signals
> > >> or
> > >> BadValueError: Property starttime is required
>
> > >> Site is really slow to load.
>
> > >> On google app engine I see anomaly with Memcache, anyone having issues?
>
> > > --
> > > You received this message because you are subscribed to the Google Groups
> > "Google App Engine" group.
> > > To post to this group, send email to google-appeng...@googlegroups.com.
> > > To unsubscribe from this group, send email to
> > google-appengine+unsubscr...@googlegroups.com > e...@googlegroups.com>
> > .
> > > For more options, visit this group at
> >http://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: Site not working after update

2010-10-11 Thread Andrius A
Yes, deployment doesnt work for me as well anymore.
On 12 Oct 2010 03:07, "Jamie H"  wrote:
> yes i cannot deploy right now
>
> On Oct 11, 8:21 pm, Andrew  wrote:
>> Hello,
>>
>> could someone from google have a look at site: bidshapeauction
>>
>> Site stopped working after update, the same code works fine on other
>> app ids. We are getting different errors:
>>
>> : cannot import name signals
>> or
>> BadValueError: Property starttime is required
>>
>> Site is really slow to load.
>>
>> On google app engine I see anomaly with Memcache, anyone having issues?
>
> --
> You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
google-appengine+unsubscr...@googlegroups.com
.
> For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: Site not working after update

2010-10-12 Thread Andrius A
Thanks Tim, you are right, i made changes by wrapping model with timezones
which is returning starttime as null. Its easy to fix, but deployment doesnt
work anymore! Its stuck for waiting when new deployed site will become
available..
On 12 Oct 2010 07:55, "Tim Hoffman"  wrote:
> Hi
>
> For this error BadValueError: Property starttime is required
> it looks like you have changed your model to make starttime required
> and your trying to retrieve and entity that doesn't have a value for
> starttime. You will need to fix your entities if you want that
> property required.
>
> The import error will be because you have a broken instance (failed on
> startup with DeadlineExceeded and can't run now due to the failed
> imports) or
> you haven't got a signals.py somewhere ;-)
>
> T
>
> On Oct 12, 9:21 am, Andrew  wrote:
>> Hello,
>>
>> could someone from google have a look at site: bidshapeauction
>>
>> Site stopped working after update, the same code works fine on other
>> app ids. We are getting different errors:
>>
>> : cannot import name signals
>> or
>> BadValueError: Property starttime is required
>>
>> Site is really slow to load.
>>
>> On google app engine I see anomaly with Memcache, anyone having issues?
>
> --
> You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
google-appengine+unsubscr...@googlegroups.com
.
> For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: Site not working after update

2010-10-12 Thread Andrius A
Thanks for your help guys! Site deployment finally worked! Jamie, is it
working for you as well?

Would be nice to get response from google, since dont know if site
deployment fixed automagically or someone from google did something. Code
bugs should not block the site deployment process.



On 12 October 2010 08:45, Andrius A  wrote:

> Thanks Tim, you are right, i made changes by wrapping model with timezones
> which is returning starttime as null. Its easy to fix, but deployment doesnt
> work anymore! Its stuck for waiting when new deployed site will become
> available..
> On 12 Oct 2010 07:55, "Tim Hoffman"  wrote:
> > Hi
> >
> > For this error BadValueError: Property starttime is required
> > it looks like you have changed your model to make starttime required
> > and your trying to retrieve and entity that doesn't have a value for
> > starttime. You will need to fix your entities if you want that
> > property required.
> >
> > The import error will be because you have a broken instance (failed on
> > startup with DeadlineExceeded and can't run now due to the failed
> > imports) or
> > you haven't got a signals.py somewhere ;-)
> >
> > T
> >
> > On Oct 12, 9:21 am, Andrew  wrote:
> >> Hello,
> >>
> >> could someone from google have a look at site: bidshapeauction
> >>
> >> Site stopped working after update, the same code works fine on other
> >> app ids. We are getting different errors:
> >>
> >> : cannot import name signals
> >> or
> >> BadValueError: Property starttime is required
> >>
> >> Site is really slow to load.
> >>
> >> On google app engine I see anomaly with Memcache, anyone having issues?
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> > To post to this group, send email to google-appeng...@googlegroups.com.
> > To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com
> .
> > For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
> >
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.