Skip to content

Commit

Permalink
Update redispipeline.h
Browse files Browse the repository at this point in the history
replace ";" with "\n"
  • Loading branch information
a114j0y authored Nov 21, 2024
1 parent ebd2afb commit 54f7c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/redispipeline.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class RedisPipeline {
return;

m_channels.insert(channel);
m_luaPub += "redis.call('PUBLISH', '" + channel + "', 'G');";
m_luaPub += "redis.call('PUBLISH', '" + channel + "', 'G')\n";
m_shaPub = loadRedisScript(m_luaPub);
}

Expand Down

0 comments on commit 54f7c64

Please sign in to comment.