Skip to content

Commit bbb1399

Browse files
committed
update search to add timeout when it is not undefuned
1 parent dbbaf72 commit bbb1399

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/search/lib/commands/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ export function pushSearchOptions(
510510
args.preserve = true;
511511
}
512512

513-
if (options?.TIMEOUT) {
513+
if (options?.TIMEOUT !== undefined) {
514514
args.push('TIMEOUT', options.TIMEOUT.toString());
515515
}
516516

0 commit comments

Comments
 (0)