| Index: appengine/config_service/storage.py
|
| diff --git a/appengine/config_service/storage.py b/appengine/config_service/storage.py
|
| index da4fda568adcfa4b7bf91b20cb22b4b7353495c1..1a8ea425b4a20151bf177ddf5329929f20d1509f 100644
|
| --- a/appengine/config_service/storage.py
|
| +++ b/appengine/config_service/storage.py
|
| @@ -270,7 +270,7 @@ def get_self_config_async(path, message_factory):
|
| cs = get_self_config_set()
|
| messages = yield get_latest_messages_async([cs], path, message_factory)
|
| msg = messages[cs]
|
| - yield ctx.memcache_set(cache_key, msg.SerializeToString())
|
| + yield ctx.memcache_set(cache_key, msg.SerializeToString(), time=60)
|
| raise ndb.Return(msg)
|
|
|
|
|
|
|