浏览代码

Merge pull request #10133 from wangkx/h17843

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

Reviewed-By: Jake Smith <jake.smith@lexisnexis.com>
Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 8 年之前
父节点
当前提交
97cffaa413
共有 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;
 }