-
Notifications
You must be signed in to change notification settings - Fork 12
cluster: tracing config options #199
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
base: master
Are you sure you want to change the base?
Changes from 1 commit
7ac8dac
daeba25
1a8b778
93c68a8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -855,6 +855,8 @@ impl TryFrom<CassConsistency> for Consistency { | |
| CassConsistency::CASS_CONSISTENCY_LOCAL_QUORUM => Ok(Consistency::LocalQuorum), | ||
| CassConsistency::CASS_CONSISTENCY_EACH_QUORUM => Ok(Consistency::EachQuorum), | ||
| CassConsistency::CASS_CONSISTENCY_LOCAL_ONE => Ok(Consistency::LocalOne), | ||
| CassConsistency::CASS_CONSISTENCY_LOCAL_SERIAL => Ok(Consistency::LocalSerial), | ||
| CassConsistency::CASS_CONSISTENCY_SERIAL => Ok(Consistency::Serial), | ||
|
Comment on lines
+858
to
+859
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a bug fix! Let's prioritise such things more, instead of packing them into PRs with new features. Bugs should be fixed ASAP!
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For a driver still in alpha packing a bugfix in a small PR like this is imo perfectly acceptable. |
||
| _ => Err(()), | ||
| } | ||
| } | ||
|
|
||
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.
typo in commit name:
CassConsistency: adjust converion to serial variants of Consistency->conversion