[skip ci]Improve error message in rocksmq (#10194)

Signed-off-by: Xiangyu Wang <xiangyu.wang@zilliz.com>
pull/10201/head
Xiangyu Wang 2021-10-19 17:50:49 +08:00 committed by GitHub
parent 56f97aa07b
commit afa6eeecd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ type client struct {
func newClient(options ClientOptions) (*client, error) {
if options.Server == nil {
return nil, newError(InvalidConfiguration, "Server is nil")
return nil, newError(InvalidConfiguration, "options.Server is nil")
}
if options.Ctx == nil {