We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 58c17d1 + 63b8d8f commit 5336f35Copy full SHA for 5336f35
CHANGELOG.md
@@ -1,3 +1,10 @@
1
+Unreleased
2
+===========
3
+
4
+Bug Fixes
5
+--------
6
+* Allow remote hosts to come back up even if policy ignores down hosts
7
8
2.14.0
9
===========
10
src/request_processor.cpp
@@ -462,9 +462,7 @@ void RequestProcessor::internal_host_ready(const Host::Ptr& host) {
462
LoadBalancingPolicy::Vec policies = load_balancing_policies();
463
for (LoadBalancingPolicy::Vec::const_iterator it = policies.begin(); it != policies.end();
464
++it) {
465
- if ((*it)->distance(host) != CASS_HOST_DISTANCE_IGNORE) {
466
- (*it)->on_host_up(host);
467
- }
+ (*it)->on_host_up(host);
468
}
469
470
0 commit comments