When I list all of the namespaces for my app, the list includes namespaces 
that no long have any kinds (tables) associated with them.  If I do the 
list repeatedly, the list is not even consistent, including namespaces 
where all the kinds were deleted previously.  Any idea why not getting the 
same list of namespaces all the time.  Here is the python snippet that 
reads the namespaces ...

namespace_manager.set_namespace( '' )
if namespace_manager.get_namespace() != '': raise Exception( 'invalid ns' ) 
aQuery = Namespace.all()
zzzz = aQuery.fetch( 500, 0 )
aList = []
for aItem in zzzz:
aNs = aItem.namespace_name.strip()
if aNs == '': continue
aList.append( aNs )
return aList

Is there another way to determine all the namespaces for an app?

Thanks

-- 
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 [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to