diff options
| author | Krishnan Parthasarathi <kp@gluster.com> | 2011-10-06 10:33:52 +0530 | 
|---|---|---|
| committer | Vijay Bellur <vijay@gluster.com> | 2011-10-05 22:28:36 -0700 | 
| commit | 9d062a1359994e4c035a413fc9c5aec28fa5e7ae (patch) | |
| tree | d5d67c5982d94b88f2eea106ac1ee3d908c150f0 | |
| parent | 1b2164ec8cfea7ab99fc4a0cb86fa3d41e4fb7e5 (diff) | |
glusterd: pending_node type missed in profile volume op.
Change-Id: Ib3c73a8432fdd2559422577a2f0c91d50b5a098c
BUG: 3704
Reviewed-on: http://review.gluster.com/561
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-op-sm.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-op-sm.c b/xlators/mgmt/glusterd/src/glusterd-op-sm.c index 16a5d01e7..73d877fcb 100644 --- a/xlators/mgmt/glusterd/src/glusterd-op-sm.c +++ b/xlators/mgmt/glusterd/src/glusterd-op-sm.c @@ -2692,6 +2692,7 @@ glusterd_bricks_select_profile_volume (dict_t *dict, char **op_errstr)                                  goto out;                          } else {                                  pending_node->node = brickinfo; +                                pending_node->type = GD_NODE_BRICK;                                  list_add_tail (&pending_node->list,                                                 &opinfo.pending_bricks);                                  pending_node = NULL; @@ -2708,6 +2709,7 @@ glusterd_bricks_select_profile_volume (dict_t *dict, char **op_errstr)                                          goto out;                                  } else {                                          pending_node->node = brickinfo; +                                        pending_node->type = GD_NODE_BRICK;                                          list_add_tail (&pending_node->list,                                                         &opinfo.pending_bricks);                                          pending_node = NULL;  | 
