Re: [VOTE] Release Apache Qpid Proton-J 0.27.1

2018-04-26 Thread Keith W
+1

* Built and ran tests from source bundle (Java 1.8.0_162-b12, Mac OS X 10.11.6)
* Ran Broker-J's JMS client integration test suites against staged
artefacts with a Qpid JMS master build (mvn integration-test
-DskipTests -DskipITs=false)


On 26 April 2018 at 12:34, Robbie Gemmell  wrote:
> On 25 April 2018 at 21:50, Robbie Gemmell  wrote:
>> I have put together a spin for a Qpid Proton-J 0.27.1 release, please
>> test it and vote accordingly.
>>
>> The source and binary archives can be grabbed from:
>> https://dist.apache.org/repos/dist/dev/qpid/proton-j/0.27.1-rc1/
>>
>> The maven artifacts are staged for now at:
>> https://repository.apache.org/content/repositories/orgapacheqpid-1138
>>
>> The only change is https://issues.apache.org/jira/browse/PROTON-1836, which
>> affects use of some new functionality added in 0.27.0.
>>
>> Regards,
>> Robbie
>>
>> P.S. If you want to test things out using maven with your own build
>> you can temporarily add this to your poms to access the staging repo:
>>
>>   
>> 
>>   staging
>>   
>> https://repository.apache.org/content/repositories/orgapacheqpid-1138
>> 
>>   
>>
>> The dependency for proton-j would then be:
>>
>>   
>> org.apache.qpid
>> proton-j
>> 0.27.1
>>   
>
> +1
>
> I checked things over as follows:
> - Verified the signature and checksum files.
> - Checked for LICENCE and NOTICE files in the archives.
> - Verified the source archive licence headers with mvn apache-rat:check.
> - Ran the build and tests from source archive.
> - Used the staged bits with a Qpid JMS master build and ran the tests.
> - Used built client in the Qpid Broker-J master build and tests.
> - Used the client and Qpid Broker-J master to run the joram tests.
> - Used the staging repo and built client with the ActiveMQ Artemis master
>   build and AMQP tests.
> - Ran the JMS HelloWorld example against Broker-J, Dispatch, and
> Artemis masters.
>
>
> Robbie
>
> -
> To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org
> For additional commands, e-mail: users-h...@qpid.apache.org
>

-
To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org
For additional commands, e-mail: users-h...@qpid.apache.org



Re: qpid-proton cpp windows : Crash

2018-04-26 Thread Baptiste Robert
Update:

I opened a JIRA : https://issues.apache.org/jira/browse/PROTON-1833


2018-04-23 16:50 GMT+02:00 Alan Conway :

> On Mon, Apr 23, 2018 at 5:37 AM, Baptiste Robert <
> baptisterober...@gmail.com
> > wrote:
>
> > Hello,
> >
> > I'm encountering a crash in the proton library. What I'm doing ? Just
> > creating a proton::container, listening locally on 0.0.0.0:5672 and then
> > call stop() on the container and getting outside of the scope (object is
> > then destroy) => the crash happen.
> >
> > Where does it crash ? In *win_iocp.c*, the line in red
> >
> > void pn_proactor_free(pn_proactor_t *p) {
> >   *DeleteTimerQueueEx(p->timer_queue, INVALID_HANDLE_VALUE);*
> >   DeleteCriticalSection(>timer_lock);
> >   DeleteCriticalSection(>bind_lock);
> >   proactor_shutdown(p);
> >
> >   delete p->reaper;
> >   WSACleanup();
> >   pn_collector_free(p->collector);
> >   free(p);
> > }
> >
> >
> > Proton version : 0.21
> > Windows 7 - 64 bits
> > Visual studio 2010
> >
> > Does any one have a clue ? It remind me this issue on the dispatch
> router:
> > https://issues.apache.org/jira/browse/DISPATCH-945
> >
> >
> Sounds like a bug. Can you raise a JIRA and attach your code to reproduce?
> The dispatch issue is not quite the same (dispatch has 2 server loops, one
> for AMQP and one for HTTP) but I believe we did fix a similar issue in the
> epoll proactor a while back.
>
> --
>
> > Baptiste Robert
> >
>



-- 
Baptiste Robert


Re: [VOTE CANCELED] Release Qpid Dispatch Router 1.1.0 (RC1)

2018-04-26 Thread Ganesh Murthy
This vote is canceled. I will put up an RC2 after resolving the issues.

Thanks.

On Wed, Apr 25, 2018 at 5:48 PM, Ted Ross  wrote:

> -1 from me based on Gordon's observation.  This should be an easy fix.
>
> -Ted
>
> On Wed, Apr 25, 2018 at 5:45 PM, Gordon Sim  wrote:
> > On 25/04/18 15:28, Ganesh Murthy wrote:
> >>
> >> Hello All,
> >>
> >>   Please cast your vote on this thread to release RC1 as the
> >> official Qpid Dispatch Router version  1.1.0.
> >>
> >> RC1 of Qpid Dispatch Router version 1.1.0 can be found here:
> >>
> >> https://dist.apache.org/repos/dist/dev/qpid/dispatch/1.1.0-rc1/
> >
> >
> > Minor (but potentially annoying) backwards compatibility issue: there are
> > some attributes that used to be on the router entity type that are now
> only
> > on the new routerStats (connectionCount etc). It would be nice to retain
> > backward compat if possible, so tentative -1 if that would be relatively
> > easy to do.
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org
> > For additional commands, e-mail: users-h...@qpid.apache.org
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org
> For additional commands, e-mail: users-h...@qpid.apache.org
>
>


Re: [VOTE] Release Apache Qpid Proton-J 0.27.1

2018-04-26 Thread Robbie Gemmell
On 25 April 2018 at 21:50, Robbie Gemmell  wrote:
> I have put together a spin for a Qpid Proton-J 0.27.1 release, please
> test it and vote accordingly.
>
> The source and binary archives can be grabbed from:
> https://dist.apache.org/repos/dist/dev/qpid/proton-j/0.27.1-rc1/
>
> The maven artifacts are staged for now at:
> https://repository.apache.org/content/repositories/orgapacheqpid-1138
>
> The only change is https://issues.apache.org/jira/browse/PROTON-1836, which
> affects use of some new functionality added in 0.27.0.
>
> Regards,
> Robbie
>
> P.S. If you want to test things out using maven with your own build
> you can temporarily add this to your poms to access the staging repo:
>
>   
> 
>   staging
>   
> https://repository.apache.org/content/repositories/orgapacheqpid-1138
> 
>   
>
> The dependency for proton-j would then be:
>
>   
> org.apache.qpid
> proton-j
> 0.27.1
>   

+1

I checked things over as follows:
- Verified the signature and checksum files.
- Checked for LICENCE and NOTICE files in the archives.
- Verified the source archive licence headers with mvn apache-rat:check.
- Ran the build and tests from source archive.
- Used the staged bits with a Qpid JMS master build and ran the tests.
- Used built client in the Qpid Broker-J master build and tests.
- Used the client and Qpid Broker-J master to run the joram tests.
- Used the staging repo and built client with the ActiveMQ Artemis master
  build and AMQP tests.
- Ran the JMS HelloWorld example against Broker-J, Dispatch, and
Artemis masters.


Robbie

-
To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org
For additional commands, e-mail: users-h...@qpid.apache.org



Re: [VOTE] Release Apache Qpid Proton-J 0.27.1

2018-04-26 Thread Gordon Sim

On 25/04/18 21:50, Robbie Gemmell wrote:

I have put together a spin for a Qpid Proton-J 0.27.1 release, please
test it and vote accordingly.


+1 built from source including tests

-
To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org
For additional commands, e-mail: users-h...@qpid.apache.org