Browse Source

Merge pull request #10170 from jakesmith/hpcc-17904

HPCC-17904 Avoid losing early query initialization exceptions.

Reviewed-by: Gavin Halliday <ghalliday@hpccsystems.com>
Gavin Halliday 8 years ago
parent
commit
ceb5c086c8
1 changed files with 2 additions and 3 deletions
  1. 2 3
      thorlcr/slave/slavmain.cpp

+ 2 - 3
thorlcr/slave/slavmain.cpp

@@ -435,9 +435,6 @@ public:
 
 
                             jobChannel.addDependencies(job->queryXGMML(), false);
                             jobChannel.addDependencies(job->queryXGMML(), false);
                         }
                         }
-                        msg.clear();
-                        msg.append(false);
-                        queryNodeComm().reply(msg); // reply to sendGraph()
 
 
                         for (unsigned c=0; c<job->queryJobChannels(); c++)
                         for (unsigned c=0; c<job->queryJobChannels(); c++)
                         {
                         {
@@ -446,6 +443,8 @@ public:
 
 
                             jobChannel.startGraph(*subGraph, true, 0, NULL);
                             jobChannel.startGraph(*subGraph, true, 0, NULL);
                         }
                         }
+                        msg.clear();
+                        msg.append(false);
 
 
                         break;
                         break;
                     }
                     }