diff options
author | Dan Lambright <dlambrig@redhat.com> | 2016-05-13 13:06:21 -0400 |
---|---|---|
committer | Dan Lambright <dlambrig@redhat.com> | 2016-05-16 05:24:22 -0700 |
commit | 1a3e4159c8ecda51e0f7bb018e017aa0f9d522b8 (patch) | |
tree | 097d29152377bf23c290d69c99237bdce23c6306 /xlators/cluster/dht | |
parent | 58c577994b2bf67b6f8d9749d9c7d678edfc9ceb (diff) |
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.
Change-Id: Ia7d074423019fa79443bc6ea694148b7b8da455d
BUG: 1335973
Signed-off-by: Dan Lambright <dlambrig@redhat.com>
Reviewed-on: http://review.gluster.org/14336
Smoke: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: N Balachandran <nbalacha@redhat.com>
Tested-by: N Balachandran <nbalacha@redhat.com>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'xlators/cluster/dht')
-rw-r--r-- | xlators/cluster/dht/src/tier.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/cluster/dht/src/tier.c b/xlators/cluster/dht/src/tier.c index a0fe12179a4..356af021563 100644 --- a/xlators/cluster/dht/src/tier.c +++ b/xlators/cluster/dht/src/tier.c @@ -531,7 +531,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; |