From 8fbead427446413ba26f77382599437fcdff6ecd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20S=C3=B6lver?= Date: Sun, 5 Mar 2023 21:33:04 +0100 Subject: [PATCH] Don't reset transactionID when reopening TCP connection --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index bfca98e..27e8498 100644 --- a/client.go +++ b/client.go @@ -37,7 +37,7 @@ func (m *Mbclient) closer() { <-m.t.C m.conn.Close() - m.transactionCounter = 0 + //m.transactionCounter = 0 m.wg.Done() }