-
Notifications
You must be signed in to change notification settings - Fork 428
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 cqerl as cassandra client library #1145
Conversation
@@ -1,4 +1,5 @@ | |||
language: erlang | |||
dist: trusty |
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.
Why Trusty specifically?
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.
Here's the answer: #1133 (comment) :)
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.
Merci. :)
row_to_uniform_format(#{from_jid := FromJID, message := Msg, id := Id}) -> | ||
SrcJID = unserialize_jid(FromJID), | ||
Packet = stored_binary_to_packet(Msg), | ||
MsgID = Id, |
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.
Do we need MsgID
? Can we simply return Id
or assign id
from the input map to MsgID
?
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.
No, it's just an artefact of refactoring. It'll be gone after next push.
d2096a5
to
46eebec
Compare
6fd4c5c
to
1e3a3c7
Compare
Thanks! |
This PR changes Cassandra backend to use cqerl client library instead seestar.