Github user trinakrug commented on a diff in the pull request:
https://github.com/apache/incubator-trafodion/pull/385#discussion_r56402324
--- Diff: core/sqf/monitor/linux/pnode.cxx ---
@@ -1528,6 +1528,14 @@ void CNodeContainer::AddNodes( )
int pnid;
int rank;
int *sparePNids = NULL;
+
+ // only relevant on a workstation acting as a single node
+ const char* envVar = getenv("SQ_MAX_RANK");
+ int maxNode;
+ if (envVar != NULL)
+ maxNode = atoi (envVar);
--- End diff --
This is a testing tool only.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---