increase appengine storage limit to avoid false positive

This commit is contained in:
juliandescottes 2017-01-15 13:08:41 +01:00
parent 6ce2c00acf
commit a740699775

View File

@ -53,7 +53,7 @@ var Constants = {
// This size will be compared to the length of the stringified serialization of the sprite.
// This is an approximation at best but gives correct results in most cases.
// The datastore limit is 1 MiB, which we roughly approximate to 1 million characters.
APPENGINE_SAVE_LIMIT : 1 * 1000 * 1000,
APPENGINE_SAVE_LIMIT : 1 * 1024 * 1024,
// SERVICE URLS
APPENGINE_SAVE_URL : 'save',