We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dde283 commit 4dea5cbCopy full SHA for 4dea5cb
packages/client/lib/client/index.spec.ts
@@ -123,6 +123,7 @@ describe('Client', () => {
123
client.connect()
124
]);
125
126
+ // TODO: This is failing and I don't know why. when I run manually it seems fine.
127
await Promise.all([
128
once(client, 'end'),
129
client.close()
packages/client/lib/cluster/index.ts
@@ -163,11 +163,6 @@ export default class RedisCluster<
163
break;
164
}
165
166
- // TODO: remove once request & response policies are ready
167
- if (key === undefined && !command.IS_FORWARD_COMMAND) {
168
- throw new Error('TODO');
169
- }
170
-
171
return key;
172
173
0 commit comments