Bug 777703 (SOA-219) - jms_topic QS - SendJMSMessage has duplicate close method
Summary: jms_topic QS - SendJMSMessage has duplicate close method
Keywords:
Status: CLOSED NEXTRELEASE
Alias: SOA-219
Product: JBoss Enterprise SOA Platform 4
Classification: JBoss
Component: JBossESB
Version: 4.2 IR8
Hardware: Unspecified
OS: Unspecified
low
low
Target Milestone: ---
: 4.2 IR9
Assignee: Mark Little
QA Contact:
URL: http://jira.jboss.org/jira/browse/SOA...
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2007-12-06 11:12 UTC by Jaroslaw Kijanowski
Modified: 2007-12-20 08:34 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2007-12-20 08:34:20 UTC
Type: Bug


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Issue Tracker SOA-219 0 None None None Never

Description Jaroslaw Kijanowski 2007-12-06 11:12:18 UTC
project_key: SOA

SendJMSMessage's stop method is:

    public void stop() throws JMSException
    {
                tc.close();
                session.close();
                tc.close();
    }


should be:
    public void stop() throws JMSException
    {
        tc.stop();
        session.close();
        tc.close();
    }

Comment 1 Jaroslaw Kijanowski 2007-12-06 11:14:38 UTC
Link: Added: This issue is a dependency of JBESB-1396



Note You need to log in before you can comment on or make changes to this bug.