You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
A customer reported upgraded from v3 to v4 and was using the legacy mode and it didn't capture spans.
Feature Description
constexpress=require("express");constapp=express();constport=3000;constredis=require("redis");constredisClient=redis.createClient({url: "redis://127.0.0.1:6379",legacyMode: true,});app.get("/redis-v4",(req,res)=>{debuggerredisClient.v4.set("baz","qux").then(()=>redisClient.v4.get("baz")).then((x)=>{res.send(`baz is: ${x}`);});});redisClient.connect().then(()=>{app.listen(port,()=>{console.log(`Example app listening on port ${port}`);});});
Additional context
This appears to be as simple as wrapping client.v4 with the same stuff as client.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
A customer reported upgraded from v3 to v4 and was using the legacy mode and it didn't capture spans.
Feature Description
Additional context
This appears to be as simple as wrapping
client.v4
with the same stuff asclient.
The text was updated successfully, but these errors were encountered: