Skip to content

Commit

Permalink
Forgot to add namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
Takashi Matsuo committed Aug 19, 2015
1 parent 101b925 commit 6dc9982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion googleapiclient/discovery_cache/appengine_memcache.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ def set(self, url, content):
content: string, the discovery document.
"""
try:
memcache.set(url, content, time=int(self.max_age))
memcache.set(url, content, time=int(self.max_age), namespace=NAMESPACE)
except Exception as e:
logging.warning(e, exc_info=True)

0 comments on commit 6dc9982

Please sign in to comment.