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 127dc2a commit 3a56084Copy full SHA for 3a56084
doctests/home-json.js
@@ -16,7 +16,10 @@ const client = await createClient();
16
await client.connect();
17
// STEP_END
18
// REMOVE_START
19
-await client.ft.dropIndex('idx:users', { DD: true });
+try {
20
+ await client.ft.dropIndex('idx:users', { DD: true });
21
+} catch{}
22
+
23
await client.del('user:1', 'user:2', 'user:3');
24
// REMOVE_END
25
0 commit comments