浏览代码

HPCC-17843 Check DFU queue name correctly in FileSpray web service

The existing FileSpray web service does not read queue names correctly
when a DFU Server has multiple queues.

Signed-off-by: wangkx <kevin.wang@lexisnexis.com>
wangkx 8 年之前
父节点
当前提交
4f260b28f4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      common/workunit/workunit.cpp

+ 1 - 1
common/workunit/workunit.cpp

@@ -4764,7 +4764,7 @@ extern WORKUNIT_API void getDFUServerQueueNames(StringArray &ret, const char *pr
     {
         IPropertyTree &target = targets->query();
         if (target.hasProp("@queue"))
-            ret.appendUniq(target.queryProp("@queue"));
+            ret.appendListUniq(target.queryProp("@queue"), ",");
     }
     return;
 }