-
Notifications
You must be signed in to change notification settings - Fork 7
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
Split Xandra prepare and execute options #48
Conversation
lib/exandra.ex
Outdated
@@ -218,6 +218,34 @@ defmodule Exandra do | |||
Xandra.Cluster | |||
) | |||
|
|||
@xandra_prepare_opts [ |
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.
Instead of duplicating these lists and the logic here, can we create a Xandra.Connection.split_prepare_and_execute_options/1
and use that here?
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.
Done
Also fixed :telemetry_metadata and tests failing due to duplicate keys
94ec441
to
4fa83eb
Compare
With this the :timeout option is also available to xandra functions instead of being dropped. Fixes vinniefranco#47
4fa83eb
to
0e941ae
Compare
Thanks @noaccOS 💟 |
Fixes #47