https://issues.apache.org/bugzilla/show_bug.cgi?id=55334

Soul Patch <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #3 from Soul Patch <[email protected]> ---
Created attachment 30661
  --> https://issues.apache.org/bugzilla/attachment.cgi?id=30661&action=edit
proposed patch containing the fix for the issue.

The patch should be applied to the src/core directory in the source code. It
contains the fix for the reported issue. The patch modifies the code in the
org.apache.jmeter.threads.TestCompiler.addNode() method. 

The method should look like this after adding the patch.

/** {@inheritDoc} */
    @Override
    public void addNode(Object node, HashTree subTree) {
        if(node instanceof JMeterTreeNode){
            stack.addLast(((JMeterTreeNode)node).getTestElement());
        }else{
        stack.addLast((TestElement) node);
        }
    }

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to