File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
packages/client/lib/client Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ export default class RedisCommandsQueue {
121
121
//TODO: we can shave off a few cycles by not adding onPush handler at all if CSC is not used
122
122
onPush : push => {
123
123
if ( ! this . #onPush( push ) ) {
124
+ console . log ( 'Push received' , push . toString ( ) ) ;
124
125
// currently only supporting "invalidate" over RESP3 push messages
125
126
switch ( push [ 0 ] . toString ( ) ) {
126
127
case "invalidate" : {
Original file line number Diff line number Diff line change @@ -710,7 +710,7 @@ export default class RedisClient<
710
710
711
711
return new RedisSocket ( socketInitiator , options ?. socket )
712
712
. on ( 'data' , chunk => {
713
- console . log ( 'Data received' , chunk ) ;
713
+ console . log ( 'Data received' , chunk . toString ( ) ) ;
714
714
try {
715
715
this . #queue. decoder . write ( chunk ) ;
716
716
} catch ( err ) {
You can’t perform that action at this time.
0 commit comments