R55 – The COMPUTE nodes connections are inconsistent (WMB)

The COMPUTE nodes connections are inconsistent (WMB)

There is a logical coupling of a compute node and its connections to the ESQL code that is executed when it runs. This violation indicates that there is an inconsistent state between the ESQL logic and compute node configuration.

For example
Could be an issue
Does not match the outputs from the following ESQL   CREATE FUNCTION Main() RETURNS BOOLEAN
  BEGIN
    CALL CopyMessageHeaders();
    CALL CopyEntireMessage();

    IF (Environment.Variables.Person.Sex = ‘Male’) THEN
      PROPAGATE TO TERMINAL ‘out1′;
    ELSE
      PROPAGATE TO TERMINAL ‘out2′ DELETE NONE;
    END IF;

    RETURN TRUE;
  END;