google app engine - GCP Datastore after migration: Key must be from same project as batch -


i tried backup google cloud datastore , restore project, according guide. worked fine, except put or delete node in new project, gives:

valueerror: key must same project batch

so, checked source , found this:

if self.project != entity.key.project:     raise valueerror("key must same project batch") 

so seems items in datastore include previous project in keys. there way fix this?


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -