Ver código fonte

Merge pull request #7673 from richardkchapman/thor-daliclient

HPCC-14058 Workunit services not honouring #option('slaveDaliClient',true)

Reviewed-By: Jake Smith <jake.smith@lexisnexis.com>
Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 10 anos atrás
pai
commit
20e35f3231
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      thorlcr/graph/thgraphslave.cpp

+ 1 - 1
thorlcr/graph/thgraphslave.cpp

@@ -1028,7 +1028,7 @@ public:
     virtual bool allowDaliAccess() const
     {
         // NB. includes access to foreign Dalis.
-        return globals->getPropBool("Debug/@slaveDaliClient");
+        return globals->getPropBool("Debug/@slaveDaliClient") || job.getWorkUnitValueBool("slaveDaliClient", false);
     }
 };