1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-11-23 21:44:41 +02:00

fix atomic int alignment bug

This commit is contained in:
Asim Aslam
2025-10-07 15:57:43 +00:00
parent 7b0fa8b6ae
commit 3d6b6521ab

View File

@@ -30,12 +30,10 @@ const (
)
type rpcClient struct {
seq uint64
opts Options
once atomic.Value
pool pool.Pool
seq uint64
mu sync.RWMutex
}