Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Service Bus - unaligned 64-bit atomic operation when running on mips #16847

Merged
merged 2 commits into from Jan 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions sdk/messaging/azservicebus/client.go
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