diff options
author | Valery Piashchynski <[email protected]> | 2021-06-21 00:34:53 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-06-21 00:34:53 +0300 |
commit | 2ab22ac9e935efb126b51e9c3521073e6a5155a1 (patch) | |
tree | 5c6b1d4ee2aea4e6a1cc828ca1fcb2306ef9741e /plugins/websockets/pool | |
parent | 18c072d5dbe3ca96fe2198f323d3bf520972e80f (diff) |
- Minor tests improvenments
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/websockets/pool')
-rw-r--r-- | plugins/websockets/pool/workers_pool.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/websockets/pool/workers_pool.go b/plugins/websockets/pool/workers_pool.go index 00e053ec..752ba3ce 100644 --- a/plugins/websockets/pool/workers_pool.go +++ b/plugins/websockets/pool/workers_pool.go @@ -93,7 +93,7 @@ func (wp *WorkersPool) do() { //nolint:gocognit wp.subscriber.Connections(msg.Topic, res) if len(res) == 0 { - wp.log.Info("no such topic", "topic", msg.Topic) + wp.log.Info("no connections associated with provided topic", "topic", msg.Topic) wp.put(res) continue } |