RobertIndie commented on issue #1179:
URL:
https://github.com/apache/pulsar-client-go/issues/1179#issuecomment-1958608608
Pulsar 2.6.0 is out of support. Could you upgrade your pulsar to the latest
version like 3.0.2 or 3.2.0.
And for your code, you need to create your tenant first:
```golang
err = pulsarAdmin.Tenants().Create(utils.TenantData{Name: "seenow",
AllowedClusters: []string{"standalone"}})
if err != nil {
assert.Nil(t, err)
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]