File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
packages/client/lib/client Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ export default class RedisCommandsQueue {
55
55
readonly #respVersion;
56
56
readonly #maxLength;
57
57
readonly #toWrite = new DoublyLinkedList < CommandToWrite > ( ) ;
58
- readonly #waitingForReply: EmptyAwareSinglyLinkedList < CommandWaitingForReply > ;
58
+ readonly #waitingForReply = new EmptyAwareSinglyLinkedList < CommandWaitingForReply > ( ) ;
59
59
readonly #onShardedChannelMoved;
60
60
#chainInExecution: symbol | undefined ;
61
61
readonly decoder ;
@@ -77,7 +77,6 @@ export default class RedisCommandsQueue {
77
77
this . #maxLength = maxLength ;
78
78
this . #onShardedChannelMoved = onShardedChannelMoved ;
79
79
this . decoder = this . #initiateDecoder( ) ;
80
- this . #waitingForReply = new EmptyAwareSinglyLinkedList < CommandWaitingForReply > ( )
81
80
this . #waitingForReply. events . on ( 'empty' , this . events . emit . bind ( this . events , 'waitingForReplyEmpty' ) )
82
81
}
83
82
You can’t perform that action at this time.
0 commit comments