config: migrate from nestjs to tasks and websocket server in docker (#316)
* feat: make tasks script run in docker * feat: make websocket server work in docker * fix: format issue * fix: broken lockfile * fix: non matching typescript versions
This commit is contained in:
@@ -37,7 +37,7 @@ export const createSubPubChannel = <TData>(name: string) => {
|
||||
);
|
||||
});
|
||||
subscriber.on("message", (channel, message) => {
|
||||
if (channel !== channelName) return;
|
||||
if (channel !== channelName) return; // TODO: check if this is necessary - it should be handled by the redis client
|
||||
|
||||
callback(superjson.parse(message));
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user