You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by "Keith Wall (Created) (JIRA)" <ji...@apache.org> on 2012/01/11 12:17:39 UTC

[jira] [Created] (QPID-3747) AMQConnectionTest occasionally fails on spawned profiles.

AMQConnectionTest occasionally fails on spawned profiles.
---------------------------------------------------------

                 Key: QPID-3747
                 URL: https://issues.apache.org/jira/browse/QPID-3747
             Project: Qpid
          Issue Type: Bug
          Components: Java Tests
    Affects Versions: 0.15
            Reporter: Keith Wall
            Assignee: Keith Wall


We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles
with assertion failure "Consumer A should not have received a 3rd message"





--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:dev-subscribe@qpid.apache.org


[jira] [Updated] (QPID-3747) PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.

Posted by "Keith Wall (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-3747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Keith Wall updated QPID-3747:
-----------------------------

    Fix Version/s: 0.15
    
> PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.
> --------------------------------------------------------------------------------------------------------------------------
>
>                 Key: QPID-3747
>                 URL: https://issues.apache.org/jira/browse/QPID-3747
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Tests
>    Affects Versions: 0.15
>            Reporter: Keith Wall
>            Assignee: Robbie Gemmell
>             Fix For: 0.15
>
>
> We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles with assertion failure "Consumer A should not have received a 3rd message"
> e.g. java-mms-spawn.0-10  
> {code}
> junit.framework.AssertionFailedError: Consumer A should not have received a 3rd message
> 	at org.apache.qpid.test.unit.client.AMQConnectionTest.testPrefetchSystemProperty(AMQConnectionTest.java:263)
> 	at org.apache.qpid.test.utils.QpidBrokerTestCase.runBare(QpidBrokerTestCase.java:240)
> 	at org.apache.qpid.test.utils.QpidTestCase.run(QpidTestCase.java:135)
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:dev-subscribe@qpid.apache.org


[jira] [Commented] (QPID-3747) AMQConnectionTest#testPrefetchSystemProperty occasionally fails on spawned profiles.

Posted by "Keith Wall (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/QPID-3747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184832#comment-13184832 ] 

Keith Wall commented on QPID-3747:
----------------------------------

This seems to be a Java Broker bug affecting 0-10 only.  When the problem occurs the incoming MessageTransfer for the third message always has the wrong destination, causing the message to be sent to the (wrong) Consumer A (destination 1) rather than Consumer B (destination 2).

The failing case:


{code}
main 2012-01-12 08:54:11,318 DEBUG [qpid.client.prefetch.PrefetchBehaviourTest] Checking that Consumer A does not have 3rd message
main 2012-01-12 08:54:11,318 DEBUG [qpid.client.AMQSession.Dispatcher] Set Dispatcher Connection Started: Currently Started
IoReceiver - localhost/127.0.0.1:15672 2012-01-12 08:54:11,318 DEBUG [apache.qpid.transport.Connection] RECV: [conn:34883357] ch=0 MessageTransfer(destinatio
n=1, acceptMode=EXPLICIT, acquireMode=PRE_ACQUIRED)
  DeliveryProperties(priority=MEDIUM, deliveryMode=PERSISTENT, timestamp=1326358451231, exchange=amq.direct, routingKey=PrefetchBehaviourTest-testLowPrefetch
CausesMessagesToBeDistributedBetweenConsumers)
  MessageProperties(contentLength=1024, messageId=63e1574b-d085-3e4e-aeb8-f5695bd0e849, contentType=text/plain, userId=[B@3b19e583, applicationHeaders={index
=2})
{code}

The successful case:

{code}

main 2012-01-12 08:39:58,236 DEBUG [qpid.client.prefetch.PrefetchBehaviourTest] Checking that Consumer A does not have 3rd message
main 2012-01-12 08:39:58,236 DEBUG [qpid.client.AMQSession.Dispatcher] Set Dispatcher Connection Started: Currently Started
BROKER: pool-3-thread-5 2012-01-12 08:39:58,236 DEBUG [apache.qpid.transport.Connection] SEND: [conn:6ce931d9] ch=0 id=2 [B] MessageTransfer(destination=2, a
cceptMode=EXPLICIT, acquireMode=PRE_ACQUIRED)
BROKER:   DeliveryProperties(priority=MEDIUM, deliveryMode=PERSISTENT, timestamp=1326357598175, exchange=amq.direct, routingKey=PrefetchBehaviourTest-testLow
PrefetchCausesMessagesToBeDistributedBetweenConsumers)
BROKER:   MessageProperties(contentLength=1024, messageId=96258a94-f08d-3a56-9af4-94b04b5d2e70, contentType=text/plain, userId=[B@30cafa1, applicationHeaders
={index=2})


{code}






                
> AMQConnectionTest#testPrefetchSystemProperty occasionally fails on spawned profiles.
> ------------------------------------------------------------------------------------
>
>                 Key: QPID-3747
>                 URL: https://issues.apache.org/jira/browse/QPID-3747
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Tests
>    Affects Versions: 0.15
>            Reporter: Keith Wall
>            Assignee: Keith Wall
>
> We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles with assertion failure "Consumer A should not have received a 3rd message"
> e.g. java-mms-spawn.0-10  
> {code}
> junit.framework.AssertionFailedError: Consumer A should not have received a 3rd message
> 	at org.apache.qpid.test.unit.client.AMQConnectionTest.testPrefetchSystemProperty(AMQConnectionTest.java:263)
> 	at org.apache.qpid.test.utils.QpidBrokerTestCase.runBare(QpidBrokerTestCase.java:240)
> 	at org.apache.qpid.test.utils.QpidTestCase.run(QpidTestCase.java:135)
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:dev-subscribe@qpid.apache.org


[jira] [Updated] (QPID-3747) PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.

Posted by "Keith Wall (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-3747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Keith Wall updated QPID-3747:
-----------------------------

    Status: Ready To Review  (was: In Progress)
    
> PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.
> --------------------------------------------------------------------------------------------------------------------------
>
>                 Key: QPID-3747
>                 URL: https://issues.apache.org/jira/browse/QPID-3747
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Tests
>    Affects Versions: 0.15
>            Reporter: Keith Wall
>            Assignee: Keith Wall
>
> We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles with assertion failure "Consumer A should not have received a 3rd message"
> e.g. java-mms-spawn.0-10  
> {code}
> junit.framework.AssertionFailedError: Consumer A should not have received a 3rd message
> 	at org.apache.qpid.test.unit.client.AMQConnectionTest.testPrefetchSystemProperty(AMQConnectionTest.java:263)
> 	at org.apache.qpid.test.utils.QpidBrokerTestCase.runBare(QpidBrokerTestCase.java:240)
> 	at org.apache.qpid.test.utils.QpidTestCase.run(QpidTestCase.java:135)
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:dev-subscribe@qpid.apache.org


[jira] [Updated] (QPID-3747) AMQConnectionTest#testPrefetchSystemProperty occasionally fails on spawned profiles.

Posted by "Keith Wall (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-3747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Keith Wall updated QPID-3747:
-----------------------------

    Attachment: 0001-QPID-3747-WIP.patch

Patch representing my work so far.
                
> AMQConnectionTest#testPrefetchSystemProperty occasionally fails on spawned profiles.
> ------------------------------------------------------------------------------------
>
>                 Key: QPID-3747
>                 URL: https://issues.apache.org/jira/browse/QPID-3747
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Tests
>    Affects Versions: 0.15
>            Reporter: Keith Wall
>            Assignee: Keith Wall
>         Attachments: 0001-QPID-3747-WIP.patch
>
>
> We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles
> with assertion failure "Consumer A should not have received a 3rd message"

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:dev-subscribe@qpid.apache.org


[jira] [Resolved] (QPID-3747) PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.

Posted by "Robbie Gemmell (Resolved) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-3747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robbie Gemmell resolved QPID-3747.
----------------------------------

    Resolution: Fixed

Change looks good to me.
                
> PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.
> --------------------------------------------------------------------------------------------------------------------------
>
>                 Key: QPID-3747
>                 URL: https://issues.apache.org/jira/browse/QPID-3747
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Tests
>    Affects Versions: 0.15
>            Reporter: Keith Wall
>            Assignee: Robbie Gemmell
>             Fix For: 0.15
>
>
> We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles with assertion failure "Consumer A should not have received a 3rd message"
> e.g. java-mms-spawn.0-10  
> {code}
> junit.framework.AssertionFailedError: Consumer A should not have received a 3rd message
> 	at org.apache.qpid.test.unit.client.AMQConnectionTest.testPrefetchSystemProperty(AMQConnectionTest.java:263)
> 	at org.apache.qpid.test.utils.QpidBrokerTestCase.runBare(QpidBrokerTestCase.java:240)
> 	at org.apache.qpid.test.utils.QpidTestCase.run(QpidTestCase.java:135)
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:dev-subscribe@qpid.apache.org


[jira] [Assigned] (QPID-3747) PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.

Posted by "Keith Wall (Assigned) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-3747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Keith Wall reassigned QPID-3747:
--------------------------------

    Assignee: Robbie Gemmell  (was: Keith Wall)
    
> PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.
> --------------------------------------------------------------------------------------------------------------------------
>
>                 Key: QPID-3747
>                 URL: https://issues.apache.org/jira/browse/QPID-3747
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Tests
>    Affects Versions: 0.15
>            Reporter: Keith Wall
>            Assignee: Robbie Gemmell
>
> We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles with assertion failure "Consumer A should not have received a 3rd message"
> e.g. java-mms-spawn.0-10  
> {code}
> junit.framework.AssertionFailedError: Consumer A should not have received a 3rd message
> 	at org.apache.qpid.test.unit.client.AMQConnectionTest.testPrefetchSystemProperty(AMQConnectionTest.java:263)
> 	at org.apache.qpid.test.utils.QpidBrokerTestCase.runBare(QpidBrokerTestCase.java:240)
> 	at org.apache.qpid.test.utils.QpidTestCase.run(QpidTestCase.java:135)
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:dev-subscribe@qpid.apache.org


[jira] [Updated] (QPID-3747) AMQConnectionTest#testPrefetchSystemProperty occasionally fails on spawned profiles.

Posted by "Keith Wall (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-3747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Keith Wall updated QPID-3747:
-----------------------------

    Description: 
We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles with assertion failure "Consumer A should not have received a 3rd message"

e.g. java-mms-spawn.0-10  

{code}
junit.framework.AssertionFailedError: Consumer A should not have received a 3rd message
	at org.apache.qpid.test.unit.client.AMQConnectionTest.testPrefetchSystemProperty(AMQConnectionTest.java:263)
	at org.apache.qpid.test.utils.QpidBrokerTestCase.runBare(QpidBrokerTestCase.java:240)
	at org.apache.qpid.test.utils.QpidTestCase.run(QpidTestCase.java:135)
{code}





  was:
We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles
with assertion failure "Consumer A should not have received a 3rd message"





    
> AMQConnectionTest#testPrefetchSystemProperty occasionally fails on spawned profiles.
> ------------------------------------------------------------------------------------
>
>                 Key: QPID-3747
>                 URL: https://issues.apache.org/jira/browse/QPID-3747
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Tests
>    Affects Versions: 0.15
>            Reporter: Keith Wall
>            Assignee: Keith Wall
>         Attachments: 0001-QPID-3747-WIP.patch
>
>
> We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles with assertion failure "Consumer A should not have received a 3rd message"
> e.g. java-mms-spawn.0-10  
> {code}
> junit.framework.AssertionFailedError: Consumer A should not have received a 3rd message
> 	at org.apache.qpid.test.unit.client.AMQConnectionTest.testPrefetchSystemProperty(AMQConnectionTest.java:263)
> 	at org.apache.qpid.test.utils.QpidBrokerTestCase.runBare(QpidBrokerTestCase.java:240)
> 	at org.apache.qpid.test.utils.QpidTestCase.run(QpidTestCase.java:135)
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:dev-subscribe@qpid.apache.org


[jira] [Updated] (QPID-3747) AMQConnectionTest#testPrefetchSystemProperty occasionally fails on spawned profiles.

Posted by "Keith Wall (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-3747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Keith Wall updated QPID-3747:
-----------------------------

    Summary: AMQConnectionTest#testPrefetchSystemProperty occasionally fails on spawned profiles.  (was: AMQConnectionTest occasionally fails on spawned profiles.)
    
> AMQConnectionTest#testPrefetchSystemProperty occasionally fails on spawned profiles.
> ------------------------------------------------------------------------------------
>
>                 Key: QPID-3747
>                 URL: https://issues.apache.org/jira/browse/QPID-3747
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Tests
>    Affects Versions: 0.15
>            Reporter: Keith Wall
>            Assignee: Keith Wall
>
> We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles
> with assertion failure "Consumer A should not have received a 3rd message"

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:dev-subscribe@qpid.apache.org


[jira] [Updated] (QPID-3747) PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.

Posted by "Keith Wall (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-3747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Keith Wall updated QPID-3747:
-----------------------------

    Summary: PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.  (was: AMQConnectionTest#testPrefetchSystemProperty occasionally fails on spawned profiles.)

Test renamed from  AMQConnectionTest#testPrefetchSystemProperty to PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers by QPID-3635
                
> PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.
> --------------------------------------------------------------------------------------------------------------------------
>
>                 Key: QPID-3747
>                 URL: https://issues.apache.org/jira/browse/QPID-3747
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Tests
>    Affects Versions: 0.15
>            Reporter: Keith Wall
>            Assignee: Keith Wall
>
> We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles with assertion failure "Consumer A should not have received a 3rd message"
> e.g. java-mms-spawn.0-10  
> {code}
> junit.framework.AssertionFailedError: Consumer A should not have received a 3rd message
> 	at org.apache.qpid.test.unit.client.AMQConnectionTest.testPrefetchSystemProperty(AMQConnectionTest.java:263)
> 	at org.apache.qpid.test.utils.QpidBrokerTestCase.runBare(QpidBrokerTestCase.java:240)
> 	at org.apache.qpid.test.utils.QpidTestCase.run(QpidTestCase.java:135)
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:dev-subscribe@qpid.apache.org


[jira] [Commented] (QPID-3747) PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.

Posted by "Keith Wall (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/QPID-3747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13185611#comment-13185611 ] 

Keith Wall commented on QPID-3747:
----------------------------------

Hi Robbie,

Changes made as discussed, cheers, Keith.
                
> PrefetchBehaviourTest.testLowPrefetchCausesMessagesToBeDistributedBetweenConsumers occasionally fails on spawned profiles.
> --------------------------------------------------------------------------------------------------------------------------
>
>                 Key: QPID-3747
>                 URL: https://issues.apache.org/jira/browse/QPID-3747
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Tests
>    Affects Versions: 0.15
>            Reporter: Keith Wall
>            Assignee: Robbie Gemmell
>
> We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles with assertion failure "Consumer A should not have received a 3rd message"
> e.g. java-mms-spawn.0-10  
> {code}
> junit.framework.AssertionFailedError: Consumer A should not have received a 3rd message
> 	at org.apache.qpid.test.unit.client.AMQConnectionTest.testPrefetchSystemProperty(AMQConnectionTest.java:263)
> 	at org.apache.qpid.test.utils.QpidBrokerTestCase.runBare(QpidBrokerTestCase.java:240)
> 	at org.apache.qpid.test.utils.QpidTestCase.run(QpidTestCase.java:135)
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:dev-subscribe@qpid.apache.org


[jira] [Updated] (QPID-3747) AMQConnectionTest#testPrefetchSystemProperty occasionally fails on spawned profiles.

Posted by "Keith Wall (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-3747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Keith Wall updated QPID-3747:
-----------------------------

    Attachment:     (was: 0001-QPID-3747-WIP.patch)
    
> AMQConnectionTest#testPrefetchSystemProperty occasionally fails on spawned profiles.
> ------------------------------------------------------------------------------------
>
>                 Key: QPID-3747
>                 URL: https://issues.apache.org/jira/browse/QPID-3747
>             Project: Qpid
>          Issue Type: Bug
>          Components: Java Tests
>    Affects Versions: 0.15
>            Reporter: Keith Wall
>            Assignee: Keith Wall
>
> We see test AMQConnectionTest#testPrefetchSystemProperty occasionally fail on CI instances running the spawned profiles with assertion failure "Consumer A should not have received a 3rd message"
> e.g. java-mms-spawn.0-10  
> {code}
> junit.framework.AssertionFailedError: Consumer A should not have received a 3rd message
> 	at org.apache.qpid.test.unit.client.AMQConnectionTest.testPrefetchSystemProperty(AMQConnectionTest.java:263)
> 	at org.apache.qpid.test.utils.QpidBrokerTestCase.runBare(QpidBrokerTestCase.java:240)
> 	at org.apache.qpid.test.utils.QpidTestCase.run(QpidTestCase.java:135)
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:dev-subscribe@qpid.apache.org