David Justice

Results 109 comments of David Justice

I do consider the feature set of EPH to be useful, but I would like to implement it differently than it is currently implemented. The default implementation uses Azure Storage...

This appears to be error when trying to dial the Managed Identity provider on Azure virtual machine. Are you running this on an Azure VM with Managed Identity enabled? For...

I'm not clear why the thumbs down? The error you are providing is from the Azure Active Directory token provider when it tries to probe for managed identities. It does...

If you have a connection string, just use: ```go connStr := "Endpoint=sb://xyz-dev-eventhub.servicebus.windows.net/;SharedAccessKeyName=owner;SharedAccessKey=****************************=;EntityPath=xyz-device-remoteaccess" hub, err := eventhub.NewHubFromConnectionString(connStr) if err != nil { fmt.Println(err) return } ``` I don't understand why you...

Well, I am not an active maintainer of this repo any longer. Those duties now fall on @jhendrixMSFT et al, so I'd defer to their team on any guidance /...

hmm... I wonder if a `go mod tidy` before `go build` would fix everything up.

Would you try to run `GO111MODULE=on go get -u github.com/Azure/azure-event-hubs-go/v2` or execute `go get -u github.com/Azure/azure-event-hubs-go/v2` outside of your GOPATH, and report back?

I'm not sure what to tell you. This is what I see when I run `go get -u github.com/Azure/azure-event-hubs-go/v2`. ``` $ go version go version go1.12.9 darwin/amd64 $ go get...

Definitely beneficial to fix that in the client, but would be more impactful to fix that in the service.

How would `nil` replicas work with K8s version upgrades? In https://github.com/kubernetes-sigs/cluster-api-provider-azure/issues/819 we are planning on enabling MaxUnavailable and MaxSurge for safe rolling upgrade scenaios. These scenarios both implicitly require an...