[jboss-jira] [JBoss JIRA] Created: (JBRULES-481) LeftInputAdater.updateNewNode does incorrect propagation

Mark Proctor (JIRA) jira-events at jboss.com
Sun Sep 10 17:48:30 EDT 2006


LeftInputAdater.updateNewNode does incorrect propagation
--------------------------------------------------------

                 Key: JBRULES-481
                 URL: http://jira.jboss.com/jira/browse/JBRULES-481
             Project: JBoss Rules
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: Reteoo
    Affects Versions: 3.0.4
            Reporter: Mark Proctor
         Assigned To: Edson Tirelli
             Fix For: 3.0.5, 3.1-m1


        // Get the newly attached TupleSink
        final TupleSink sink = (TupleSink) getTupleSinks().get( getTupleSinks().size() - 1 );

        // Iterate the memory and assert all tuples into the newly attached TupleSink
        final Map memory = (Map) workingMemory.getNodeMemory( this );
        for ( final Iterator it = memory.values().iterator(); it.hasNext(); ) {
            final LinkedList list = (LinkedList) it.next();
            for ( LinkedListNode node = list.getFirst(); node != null; node = node.getNext() ) {
                sink.assertTuple( (ReteTuple) ((LinkedListObjectWrapper) node).getObject(),
                                  context,
                                  workingMemory );
            }
        }

We get the last Sink but then we send through ALL tuples in the list to that single sink. yet we know that each tuple is for a specific sink. we instead should grab the handle and create a new tuple which we add to the list.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jboss-jira mailing list