diff options
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volgen.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volgen.c b/xlators/mgmt/glusterd/src/glusterd-volgen.c index 816e9e68b69..08f4ca29570 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volgen.c +++ b/xlators/mgmt/glusterd/src/glusterd-volgen.c @@ -1260,6 +1260,10 @@ server_graph_builder (glusterfs_graph_t *graph, glusterd_volinfo_t *volinfo,          if (!xl)                  return -1; +        xl = volgen_graph_add (graph, "performance/io-threads", volname); +        if (!xl) +                return -1; +          ret = dict_get_int32 (volinfo->dict, "enable-pump", &pump);          if (ret == -ENOENT)                  ret = pump = 0; @@ -1287,10 +1291,6 @@ server_graph_builder (glusterfs_graph_t *graph, glusterd_volinfo_t *volinfo,                          return -1;          } -        xl = volgen_graph_add (graph, "performance/io-threads", volname); -        if (!xl) -                return -1; -          xl = volgen_graph_add (graph, "features/marker", volname);          if (!xl)                  return -1;  | 
