You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

github.com/joomcode/redispipe

Package Overview
Dependencies
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/joomcode/redispipe - go Package Compare versions

Comparing version
v0.9.3
to
v0.9.4
+4
-2
redisconn/conn.go

@@ -331,4 +331,6 @@ package redisconn

// Since we are under shard lock, it is safe to send notification before assigning futures.
if len(conn.futures) == 0 {
if conn.opts.WritePause > 0 {
// Special case for PING since it is used for latency measurement.
hasPing := req.Cmd == "PING"
if len(conn.futures) == 0 || hasPing {
if !hasPing && conn.opts.WritePause > 0 {
conn.futtimer.Reset(conn.opts.WritePause)

@@ -335,0 +337,0 @@ } else {