Datastore max size is 1,000,000, not 1M(=2^20).

This commit is contained in:
retiefjimm 2011-03-10 14:30:42 -06:00
parent ef5e7700b9
commit e6ebd956f8
3 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
application: fanfictionloader
version: 2-6-beta
version: 3-0-alpha
runtime: python
api_version: 1

View file

@ -345,9 +345,9 @@ class FanfictionDownloaderTask(webapp.RequestHandler):
while( len(data) > 0 ):
DownloadData(download=download,
index=index,
blob=data[:1024*1000]).put()
blob=data[:1000000]).put()
index += 1
data = data[1024*1000:]
data = data[1000000:]
download.completed=True
download.put()

View file

@ -4,4 +4,4 @@ queue:
- name: download
rate: 10/s
retry_parameters:
task_retry_limit: 3
task_retry_limit: 2