diff options
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volgen.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volgen.c b/xlators/mgmt/glusterd/src/glusterd-volgen.c index 6320bf17ecc..77478f3658e 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volgen.c +++ b/xlators/mgmt/glusterd/src/glusterd-volgen.c @@ -2013,7 +2013,9 @@ _xl_has_decommissioned_clients (xlator_t *xl, glusterd_volinfo_t *volinfo)          xl_child = xl->children;          while (xl_child) {                  cxl = xl_child->xlator; -                decommissioned = _xl_is_client_decommissioned (cxl, volinfo); +                /* this can go into 2 depths if the volume type +                   is stripe-replicate */ +                decommissioned = _xl_has_decommissioned_clients (cxl, volinfo);                  if (decommissioned)                          break;  | 
