-
Notifications
You must be signed in to change notification settings - Fork 6
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
Use ScalarDB SNAPSHOT versions in ScalarDB Jepsen test #109
Conversation
56a482e
to
363d7f9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
I have not tested it though.
Thank you.
(^void prepare [_] (throw (PreparationException. "preparation failed"))) | ||
(^void validate [_] (throw (ValidationException. "validation failed"))) | ||
(^void commit [_] (throw (CommitException. "commit failed"))) | ||
(^Optional get [_ ^Get _] (throw (CrudException. "get failed" nil))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to make this change because the constructors of these exceptions have been changed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! For the changes, LGMT!
I left one question. PTAL!
:profiles {:dev {:dependencies [[tortue/spy "2.0.0"]] | ||
:plugins [[lein-cloverage "1.1.2"]]} | ||
:use-released {:dependencies [[com.scalar-labs/scalardb "3.7.0" | ||
:use-released {:dependencies [[com.scalar-labs/scalardb "4.0.0-SNAPSHOT" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a comment for the user-jars
.
Do you think you want to keep use-jars
?
I feel we can delete it since it's bothersome to maintain the packages.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed. Let's delete it in another PR. Thanks.
Please take a look!