From 6bb9839291793c0468120229a63dd3f106fec9ce Mon Sep 17 00:00:00 2001 From: Sankalp Kulshreshtha Date: Mon, 13 Jun 2016 19:47:51 -0400 Subject: [PATCH] Use correct memcache environment variable. Fixes #123 (#124) --- appengine/express-memcached-session/app.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appengine/express-memcached-session/app.yaml b/appengine/express-memcached-session/app.yaml index e172a8f296..8fda01e189 100644 --- a/appengine/express-memcached-session/app.yaml +++ b/appengine/express-memcached-session/app.yaml @@ -15,5 +15,5 @@ runtime: nodejs vm: true env_variables: - MEMCACHE_URL: localhost:11211 + MEMCACHE_URL: memcache:11211 # [END app_yaml]