Skip to content

Commit 476d8bd

Browse files
srv.operations does not need namespace
1 parent d1ef2a2 commit 476d8bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/service/feature-service.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ const redisSendCommandHandler = async (context) => {
126126
};
127127

128128
module.exports = async (srv) => {
129-
const { state, redisRead, redisUpdate, redisSendCommand } = srv.operations("FeatureService");
129+
const { state, redisRead, redisUpdate, redisSendCommand } = srv.operations;
130130
srv.on(state, stateHandler);
131131
srv.on(redisRead, redisReadHandler);
132132
srv.on(redisUpdate, redisUpdateHandler);

0 commit comments

Comments
 (0)