Browse Source

Merge pull request #6438 from jakesmith/hpcc-12227

HPCC-12227 Include slave # in slave exceptions

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 10 years ago
parent
commit
191e758315
1 changed files with 2 additions and 2 deletions
  1. 2 2
      thorlcr/thorutil/thormisc.cpp

+ 2 - 2
thorlcr/thorutil/thormisc.cpp

@@ -288,9 +288,9 @@ public:
             }
             if (node)
             {
-                str.append("SLAVE ");
+                str.appendf("SLAVE #%d [", node);
                 queryClusterGroup().queryNode(node).endpoint().getUrlStr(str);
-                str.append(": ");
+                str.append("]: ");
             }
         }
         str.append(msg);