You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After enabling YCQL authentication, I tried creating a role with login=true and no password. Creation worked but attempting to log in with the role will crash the tserver.
Steps:
After enabling YCQL authentication, I tried creating a role with
login=true
and no password. Creation worked but attempting to log in with the role will crash the tserver.Steps:
bin/yb-ctl start --tserver_flags=use_cassandra_authentication=true
bin/cqlsh -u cassandra -p cassandra
create role testing with login=true;
select * from system_auth.roles
shows correct roles.exit
bin/cqlsh -u testing
will prompt for a password and then crash after any input.tserver fatal log:
Looks like a failed null check since password is recorded as null.
The text was updated successfully, but these errors were encountered: