From 8663686c402c963d694710a5f2b11dc6a4e34354 Mon Sep 17 00:00:00 2001 From: Dan Lambright Date: Fri, 13 May 2016 13:06:21 -0400 Subject: cluster/tier: downgrade max-cycle-time log message to INFO The "max cycle time" log message was incorrectly logged as an error. Downgrade it to INFO. This is a backport of 14336 > Change-Id: Ia7d074423019fa79443bc6ea694148b7b8da455d > BUG: 1335973 > Signed-off-by: Dan Lambright Change-Id: I29514c66781f49d5c36a0d3ad5dee6ab0c0368cd BUG: 1336470 Signed-off-by: Dan Lambright Reviewed-on: http://review.gluster.org/14361 Smoke: Gluster Build System NetBSD-regression: NetBSD Build System CentOS-regression: Gluster Build System Reviewed-by: N Balachandran --- xlators/cluster/dht/src/tier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xlators') diff --git a/xlators/cluster/dht/src/tier.c b/xlators/cluster/dht/src/tier.c index ca81ef08af8..8ca487b0c37 100644 --- a/xlators/cluster/dht/src/tier.c +++ b/xlators/cluster/dht/src/tier.c @@ -536,7 +536,7 @@ tier_migrate_using_query_file (void *_args) total_time = current_time.tv_sec - start_time.tv_sec; if (total_time > max_time) { - gf_msg (this->name, GF_LOG_ERROR, 0, + gf_msg (this->name, GF_LOG_INFO, 0, DHT_MSG_LOG_TIER_STATUS, "Max cycle time reached. Exiting migration."); goto out; -- cgit