Skip to content

Commit

Permalink
Change list users to list all for session validation (#3469)
Browse files Browse the repository at this point in the history
  • Loading branch information
navinanandaraj authored and jefferai committed Oct 18, 2017
1 parent d5f3f3a commit ece3c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/database/cassandra/connection_producer.go
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ func (c *cassandraConnectionProducer) createSession() (*gocql.Session, error) {
}

// Verify the info
err = session.Query(`LIST USERS`).Exec()
err = session.Query(`LIST ALL`).Exec()
if err != nil {
return nil, fmt.Errorf("error validating connection info: %s", err)
}
Expand Down

0 comments on commit ece3c77

Please sign in to comment.