-
Notifications
You must be signed in to change notification settings - Fork 622
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
CASSGO-21 Remove HostPoolHostPolicy from gocql package #1770
base: trunk
Are you sure you want to change the base?
Conversation
Maybe we can shorten the package name a bit to |
I would prefer to keep the |
|
For my first question, a search on Github finds a few uses. |
I tested this locally and |
@martin-sucha I noticed that for the This wouldn't be addressed in this PR but maybe the 2 things (hostpoolhostpolicy and lz4) should follow the same approach for consistency. |
Double-checked it with @tengu-alt: after switching to the |
After encountering an issue with CI and refactoring The Given that I think, merging |
Following the recent adjustments with LZ4 and the removal of unnecessary dependencies, I see an additional enhancement opportunity: moving the snappy into a separate package. This way, it won’t be downloaded when users only require LZ4. |
+1 on using packages instead of separate modules for lz4, snappy, and hostpoolhostpolicy. I brought this up on the C* dev Mailing List and slack but didn't get any feedback on it. I think we can proceed with this approach though. |
Please create a JIRA to move snappy to a separate package and a JIRA to move lz4 to a separate package. Let's have them target |
One reason why I think
|
I see, that makes sense, I will change it. |
@joao-r-reis so I can leave the replace approach to run integration tests with lz4 over #1822? |
Yes. And |
83fb848
to
6c692f7
Compare
I think we should have the package directory at the root instead of a
Maybe in the future we can also move the |
6c692f7
to
d5ee6c2
Compare
HostPoolHostPolicy was moved to a separate package, and users don't need to download dependency if they aren't using it. patch by Oleksandr Luzhniy; reviewed by João Reis, Stanislav Bychkov, for CASSGO-21
d5ee6c2
to
6195754
Compare
According to issue #1517
HostPoolHostPolicy
was moved to a separate package, and for now, users don't need to download dependency if they aren't using it.