Aria Operations for Logs 8.18.x
Some of the metadata for the user "lisuper" is set to "null" incorrectly.
Run the following commands to verify
cqlsh-no-passselect * from system_auth.roles where role = 'lisuper';Set Metadata for user "lisuper" to True:
From an SSH session on the primary node run the commands below:
cqlsh-no-passUPDATE system_auth.roles SET can_login = True WHERE role = 'lisuper';UPDATE system_auth.roles SET is_superuser = True WHERE role = 'lisuper';select * from system_auth.roles where role = 'lisuper'; ( To verify the change has been successful)exitNote: "member_of" field can be null.