Fixing endpoint handling

Former-commit-id: 5220fd9f76
This commit is contained in:
Owen
2025-12-03 11:14:34 -05:00
parent 58ce93f6c3
commit a07a714d93
8 changed files with 41 additions and 29 deletions

View File

@@ -646,7 +646,9 @@ func (c *Client) readPumpWithDisconnectDetection() {
c.handlersMux.RLock()
if handler, ok := c.handlers[msg.Type]; ok {
logger.Debug("***********************************Running handler for message type: %s", msg.Type)
handler(msg)
logger.Debug("***********************************Finished handler for message type: %s", msg.Type)
}
c.handlersMux.RUnlock()
}