R318 – The WHILE loop conditions are never updated (and may not exit validly) (WMB)

The WHILE loop conditions are never updated (and may not exit validly) (WMB)

This may result in an infinite loop. This will result in the broker not being able to respond. It will also prevent the EG from deploying the flow involved.

For example:   WHILE (I < J) DO
    SET Environment.Variables.PersonName[J] = Environment.Variables.OtherName[I];

  END WHILE;