Github user DaveBirdsall commented on a diff in the pull request:

    https://github.com/apache/incubator-trafodion/pull/385#discussion_r56398349
  
    --- Diff: core/sqf/monitor/linux/cmsh.cxx ---
    @@ -127,11 +127,14 @@ int CCmsh::GetClusterState( PhysicalNodeNameMap_t 
&physicalNodeMap )
                 it = physicalNodeMap.find( nodeName.c_str() );
                 if (it != physicalNodeMap.end())
                 {
    -                // TEST_POINT: to force state down on node name 
    +               // TEST_POINT and Exclude List : to force state down on 
node name 
                     const char *downNodeName = getenv( TP001_NODE_DOWN );
    -                if ( downNodeName != NULL && 
    -                    !strcmp( downNodeName, nodeName.c_str() ) )
    -                {
    +                const char *downNodeList = getenv( TRAF_EXCLUDE_LIST );
    +                if (( downNodeList != NULL && 
    +                    (strstr(downNodeList,nodeName.c_str()))) ||
    --- End diff --
    
    I suppose TRAF_EXCLUDE_LIST is a debugging tool. It occurs to me though 
that strstr() could return false positives, for example if there were two nodes 
 n001.x.y and another nn001.x.y. If nn001.x.y were in the list, strstr of 
n001.x.y would return true. But maybe we don't care about this for debugging 
purposes?


---
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.
---

Reply via email to