scylladb/gocqlx

auth with TransitionalAuthenticator

yyong37 opened this issue · 5 comments

cluster := gocql.NewCluster([]string{"127.0.0.1:9042", "127.0.0.1:9043", "127.0.0.1:9044"}...)
		cluster.Authenticator = gocql.PasswordAuthenticator{
			Username: "cassandra",
			Password: "cassandra",
		}

some error with : scylladb connect gocql: unable to create session: unable to discover protocol version: unexpected authenticator "com.scylladb.auth.TransitionalAuthenticator"

can not login. i must create other super user ?

The TransitionalAuthenticator is not supported in gocql, scylladb/gocql#76.

@rizzi37 try running with gocql updated to scylladb/gocql@428d676

fine. thx @mmatczuk

@rizzi37 try running with gocql updated to scylladb/gocql@428d676

Thanks, I will test the fix