-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CassandraJournal constructor fails on creating keyspace #45
Comments
I thought CREATE KEYSPACE IF NOT EXISTS already covers that. Have you tried setting If this doesn't work, please create a pull request. Instead of catching an exception, what do you think about introducing a new |
We had the |
Great, thank you. |
…oesn't have appropriate permissions
Issue #45 - keyspace autocreation fails when cassandra user doesn't have...
harden publish settings, krasserm#45
We have keyspace created in cassandra by admins and our cassandra user does not have permission to create new keyspaces. Therefore
session.execute(createKeyspace)
line fails with UnauthorizedException.Possible sollution is to wrap
session.execute(createKeyspace)
with check if keyspace already exists on cluster.Should we provide PR?
The text was updated successfully, but these errors were encountered: