diff options
author | shishir gowda <sgowda@redhat.com> | 2012-07-25 13:08:14 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2012-07-25 08:20:35 -0700 |
commit | 7cce8c843e9002f521da0e1af892914c5bd68737 (patch) | |
tree | ddfcd61a01d34e9549237fa2d8001eaa6b3b7c19 /xlators | |
parent | 8180d474a9f4aad495168102399b0465ad8efb06 (diff) |
cluster/distribute: Suppress user xattr mismatch log message
Changing the log-level to DEBUG.
Xattr mismatch can occur when parallel setxattr's race, or when
one of the bricks was down. A subsequent setxattr will fix the
condition when all the subvols are up. In this case, the 'user.swift'
xattr used by ufo was out of sync, but did not cause any other error.
Change-Id: I6fdff78869b8ff72c305bbe122033e6c1d9d3cff
BUG: 838197
Signed-off-by: shishir gowda <sgowda@redhat.com>
Reviewed-on: http://review.gluster.com/3722
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Reviewed-by: Mohammed Junaid <junaid@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators')
-rw-r--r-- | xlators/cluster/dht/src/dht-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/cluster/dht/src/dht-common.c b/xlators/cluster/dht/src/dht-common.c index 51e2c37ae37..5b57552c388 100644 --- a/xlators/cluster/dht/src/dht-common.c +++ b/xlators/cluster/dht/src/dht-common.c @@ -69,7 +69,7 @@ dht_aggregate (dict_t *this, char *key, data_t *value, void *data) if (!ret && data_pair && value) { ret = is_data_equal (data_pair->value, value); if (!ret) - gf_log ("dht", GF_LOG_WARNING, + gf_log ("dht", GF_LOG_DEBUG, "xattr mismatch for %s", key); } } |