Index: impl/prod/info.go |
diff --git a/impl/prod/info.go b/impl/prod/info.go |
index 94c8ba3501bb047f307142a77eefaf3b638b1947..80fc32335332f5322951593a1ef9848f5532ee7d 100644 |
--- a/impl/prod/info.go |
+++ b/impl/prod/info.go |
@@ -18,11 +18,11 @@ import ( |
func useGI(usrCtx context.Context) context.Context { |
probeCache := getProbeCache(usrCtx) |
if probeCache == nil { |
- usrCtx = withProbeCache(usrCtx, probe(AEContext(usrCtx))) |
+ usrCtx = withProbeCache(usrCtx, probe(getAEContext(usrCtx))) |
} |
return info.SetFactory(usrCtx, func(ci context.Context) info.RawInterface { |
- return giImpl{ci, AEContext(ci)} |
+ return giImpl{ci, getAEContext(ci)} |
}) |
} |