Index: impl/memory/memcache.go |
diff --git a/impl/memory/memcache.go b/impl/memory/memcache.go |
index 415ca1611752be6ea3db600393f2210719b8a5e1..d22b5c0234e28d869ce2af138d96b62df9f269ea 100644 |
--- a/impl/memory/memcache.go |
+++ b/impl/memory/memcache.go |
@@ -165,7 +165,7 @@ func useMC(c context.Context) context.Context { |
lck.Lock() |
defer lck.Unlock() |
- ns := curGID(ic).namespace |
+ ns, _ := curGID(ic).getNamespace() |
mcd, ok := mcdMap[ns] |
if !ok { |
mcd = &memcacheData{items: map[string]*mcDataItem{}} |