Commit fbbe6842 authored by Mark Harding's avatar Mark Harding

(fix): cassandra requires username/password

parent 73e13d3e
No related merge requests found
Pipeline #64568489 passed with stages
in 7 minutes and 10 seconds
......@@ -9,7 +9,9 @@ $CONFIG->minds_debug = true;
$CONFIG->cassandra = (object) [
'keyspace' => '{{cassandra-keyspace}}',
'servers' => [ '{{cassandra-server}}' ],
'cql_servers' => [ '{{cassandra-server}}' ]
'cql_servers' => [ '{{cassandra-server}}' ],
'username' => 'cassandra',
'password' => 'cassandra',
];
$CONFIG->database = [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment