Skip to content

Commit

Permalink
unaligned 64-bit atomic operation when running on mips archs (#16847)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackesdavid authored Jan 18, 2022
1 parent 6bc7fee commit 3d11d48
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sdk/messaging/azservicebus/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ import (
// Client provides methods to create Sender and Receiver
// instances to send and receive messages from Service Bus.
type Client struct {
creds clientCreds
namespace interface {
linkCounter uint64
links map[uint64]internal.Closeable
creds clientCreds
namespace interface {
// used internally by `Client`
internal.NamespaceWithNewAMQPLinks
// for child clients
internal.NamespaceForAMQPLinks
internal.NamespaceForMgmtClient
}
linksMu *sync.Mutex
linkCounter uint64
links map[uint64]internal.Closeable
linksMu *sync.Mutex
}

// ClientOptions contains options for the `NewClient` and `NewClientFromConnectionString`
Expand Down

0 comments on commit 3d11d48

Please sign in to comment.