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:
Tyler Hobbs 2015-03-25 10:39:49 -05:00
parent b296c55f95
commit 9625910a53
2 changed files with 3 additions and 1 deletions

View File

@ -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)

View File

@ -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;
}