Browse Source

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 năm trước cách đây
mục cha
commit
97cffaa413
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;
 }