(prefix: string, nodeId?: string)
| 21 | } |
| 22 | |
| 23 | function channelName(prefix: string, nodeId?: string) { |
| 24 | if (nodeId) { |
| 25 | return prefix + "#" + nodeId + "#"; |
| 26 | } else { |
| 27 | return prefix + "#"; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | export function setupPrimaryWithRedis( |
| 32 | pubClient: any, |
no outgoing calls
no test coverage detected