Skip to content

Commit 8a3d87d

Browse files
lint
1 parent ff94204 commit 8a3d87d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

lib/util.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,15 @@ export function XREAD(
8888
});
8989
} else {
9090
return redisClient
91-
.xread("BLOCK", BLOCK_DURATION_IN_MS, "COUNT", readCount, "STREAMS", streamName, offset)
91+
.xread(
92+
"BLOCK",
93+
BLOCK_DURATION_IN_MS,
94+
"COUNT",
95+
readCount,
96+
"STREAMS",
97+
streamName,
98+
offset
99+
)
92100
.then((results) => {
93101
if (results === null) {
94102
return null;

0 commit comments

Comments
 (0)