mirror of https://github.com/apache/cassandra
Lower log from error to debug when schema pull can't be executed
Patch by Tyler Hobbs; reviewed by Aleksey Yeschenko for CASSANDRA-9032
This commit is contained in:
parent
b296c55f95
commit
9625910a53
|
|
@ -1,4 +1,6 @@
|
|||
2.0.14:
|
||||
* Lower logging level from ERROR to DEBUG when a scheduled schema pull
|
||||
cannot be completed due to a node being down (CASSANDRA-9032)
|
||||
* Fix MOVED_NODE client event (CASSANDRA-8516)
|
||||
* Allow overriding MAX_OUTSTANDING_REPLAY_COUNT (CASSANDRA-7533)
|
||||
* Fix malformed JMX ObjectName containing IPv6 addresses (CASSANDRA-9027)
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class MigrationTask extends WrappedRunnable
|
|||
|
||||
if (!FailureDetector.instance.isAlive(endpoint))
|
||||
{
|
||||
logger.error("Can't send migration request: node {} is down.", endpoint);
|
||||
logger.debug("Can't send schema pull request: node {} is down.", endpoint);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue