Sfoglia il codice sorgente

Merge pull request #5304 from richardkchapman/roxie-stats

HPCC-10470 Roxie Graphs are not getting merged correctly

Reviewed-by: Gavin Halliday <ghalliday@hpccsystems.com>
Gavin Halliday 11 anni fa
parent
commit
b7ca86314b
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      roxie/ccd/ccdquery.cpp

+ 2 - 2
roxie/ccd/ccdquery.cpp

@@ -1075,10 +1075,10 @@ public:
                     if (thisGraphNameStr.length() && (stricmp(graphName, thisGraphNameStr.s.str()) != 0))
                         continue; // not interested in this one
                 }
-                reply.appendf("<Graph id='%s'><xgmml><graph>", thisGraphNameStr.s.str());
+                reply.appendf("<Graph id='%s'><xgmml>", thisGraphNameStr.s.str());
                 Owned<IPropertyTree> graphXgmml = graphs->query().getXGMMLTree(false);
                 getGraphStats(reply, *graphXgmml);
-                reply.append("</graph></xgmml></Graph>");
+                reply.append("</xgmml></Graph>");
             }
         }
     }