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 @@ -729,7 +729,7 @@ export default class RedisClient<
729
729
730
730
return new RedisSocket ( socketInitiator , options ?. socket )
731
731
. on ( 'data' , chunk => {
732
- console . log ( 'Data received' , chunk ) ;
732
+ console . log ( 'Data received' , chunk . toString ( ) ) ;
733
733
try {
734
734
this . #queue. decoder . write ( chunk ) ;
735
735
} catch ( err ) {
You can’t perform that action at this time.
0 commit comments