You are viewing a plain text version of this content. The canonical link for it is here.
Posted to proton@qpid.apache.org by Rafael Schloming <rh...@alum.mit.edu> on 2015/03/09 12:57:53 UTC

VOTE: Release Proton 0.9-rc-1 as 0.9 final

Hi Everyone,

I've posted 0.9-rc-1 in the usual places. Please have a look and register
your vote:

Source code can be found here:

    http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/

Java binaries are here:

    https://repository.apache.org/content/repositories/orgapacheqpid-1025

[   ] Yes, release Proton 0.9-rc-1 as 0.9 final
[   ] No, because ...
--Rafael

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Gordon Sim <gs...@redhat.com>.
On 03/09/2015 06:39 PM, Rafael Schloming wrote:
> Can you pull this over to the 0.9 branch?

Done.


Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Gordon Sim <gs...@redhat.com>.
On 03/09/2015 06:39 PM, Rafael Schloming wrote:
> Can you pull this over to the 0.9 branch?

Done.


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


Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Rafael Schloming <rh...@alum.mit.edu>.
Can you pull this over to the 0.9 branch?

--Rafael

On Mon, Mar 9, 2015 at 10:39 AM, Gordon Sim <gs...@redhat.com> wrote:

> On 03/09/2015 02:14 PM, Ken Giusti wrote:
>
>> Additionally, the following python unit tests fail unless the openssl
>> libraries are installed:
>>
>> proton_tests.engine.ServerTest.testIdleTimeout
>> proton_tests.engine.ServerTest.testKeepalive
>> proton_tests.messenger.IdleTimeoutTest.testIdleTimeout
>> proton_tests.utils.SyncRequestResponseTest.test_request_response
>>
>> All the other ssl tests raise the Skip exception, which I believe should
>> be done for the above as well.
>>
>> All failures have a traceback similar to this:
>>
>> 1: Error during test:  Traceback (most recent call last):
>> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton-test",
>> line 355, in run
>> 1:       phase()
>> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/engine.py",
>> line 1882, in testIdleTimeout
>> 1:       server = common.TestServer(idle_timeout=idle_timeout)
>> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/common.py",
>> line 127, in __init__
>> 1:       self.reactor = Container(self)
>> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/
>> bindings/python/proton/reactor.py", line 588, in __init__
>> 1:       self.ssl = SSLConfig()
>> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/
>> bindings/python/proton/reactor.py", line 566, in __init__
>> 1:       self.client = SSLDomain(SSLDomain.MODE_CLIENT)
>> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/
>> bindings/python/proton/__init__.py", line 3371, in __init__
>> 1:       raise SSLUnavailable()
>> 1:   SSLUnavailable
>>
>> I suspect the reactor shouldn't fail in these cases if SSL is not
>> available.
>>
>
> I have checked in a fix for that to master.
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@qpid.apache.org
> For additional commands, e-mail: users-help@qpid.apache.org
>
>

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Alan Conway <ac...@redhat.com>.
I've tested this against dispatch trunk and 0.4 branch with no problems,
so this looks good to me apart from the SSL issue mentioned below.

On Mon, 2015-03-09 at 14:39 +0000, Gordon Sim wrote:
> On 03/09/2015 02:14 PM, Ken Giusti wrote:
> > Additionally, the following python unit tests fail unless the openssl libraries are installed:
> >
> > proton_tests.engine.ServerTest.testIdleTimeout
> > proton_tests.engine.ServerTest.testKeepalive
> > proton_tests.messenger.IdleTimeoutTest.testIdleTimeout
> > proton_tests.utils.SyncRequestResponseTest.test_request_response
> >
> > All the other ssl tests raise the Skip exception, which I believe should be done for the above as well.
> >
> > All failures have a traceback similar to this:
> >
> > 1: Error during test:  Traceback (most recent call last):
> > 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton-test", line 355, in run
> > 1:       phase()
> > 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/engine.py", line 1882, in testIdleTimeout
> > 1:       server = common.TestServer(idle_timeout=idle_timeout)
> > 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/common.py", line 127, in __init__
> > 1:       self.reactor = Container(self)
> > 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/reactor.py", line 588, in __init__
> > 1:       self.ssl = SSLConfig()
> > 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/reactor.py", line 566, in __init__
> > 1:       self.client = SSLDomain(SSLDomain.MODE_CLIENT)
> > 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py", line 3371, in __init__
> > 1:       raise SSLUnavailable()
> > 1:   SSLUnavailable
> >
> > I suspect the reactor shouldn't fail in these cases if SSL is not available.
> 
> I have checked in a fix for that to master.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@qpid.apache.org
> For additional commands, e-mail: users-help@qpid.apache.org
> 



Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Rafael Schloming <rh...@alum.mit.edu>.
Can you pull this over to the 0.9 branch?

--Rafael

On Mon, Mar 9, 2015 at 10:39 AM, Gordon Sim <gs...@redhat.com> wrote:

> On 03/09/2015 02:14 PM, Ken Giusti wrote:
>
>> Additionally, the following python unit tests fail unless the openssl
>> libraries are installed:
>>
>> proton_tests.engine.ServerTest.testIdleTimeout
>> proton_tests.engine.ServerTest.testKeepalive
>> proton_tests.messenger.IdleTimeoutTest.testIdleTimeout
>> proton_tests.utils.SyncRequestResponseTest.test_request_response
>>
>> All the other ssl tests raise the Skip exception, which I believe should
>> be done for the above as well.
>>
>> All failures have a traceback similar to this:
>>
>> 1: Error during test:  Traceback (most recent call last):
>> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton-test",
>> line 355, in run
>> 1:       phase()
>> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/engine.py",
>> line 1882, in testIdleTimeout
>> 1:       server = common.TestServer(idle_timeout=idle_timeout)
>> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/common.py",
>> line 127, in __init__
>> 1:       self.reactor = Container(self)
>> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/
>> bindings/python/proton/reactor.py", line 588, in __init__
>> 1:       self.ssl = SSLConfig()
>> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/
>> bindings/python/proton/reactor.py", line 566, in __init__
>> 1:       self.client = SSLDomain(SSLDomain.MODE_CLIENT)
>> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/
>> bindings/python/proton/__init__.py", line 3371, in __init__
>> 1:       raise SSLUnavailable()
>> 1:   SSLUnavailable
>>
>> I suspect the reactor shouldn't fail in these cases if SSL is not
>> available.
>>
>
> I have checked in a fix for that to master.
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@qpid.apache.org
> For additional commands, e-mail: users-help@qpid.apache.org
>
>

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Alan Conway <ac...@redhat.com>.
I've tested this against dispatch trunk and 0.4 branch with no problems,
so this looks good to me apart from the SSL issue mentioned below.

On Mon, 2015-03-09 at 14:39 +0000, Gordon Sim wrote:
> On 03/09/2015 02:14 PM, Ken Giusti wrote:
> > Additionally, the following python unit tests fail unless the openssl libraries are installed:
> >
> > proton_tests.engine.ServerTest.testIdleTimeout
> > proton_tests.engine.ServerTest.testKeepalive
> > proton_tests.messenger.IdleTimeoutTest.testIdleTimeout
> > proton_tests.utils.SyncRequestResponseTest.test_request_response
> >
> > All the other ssl tests raise the Skip exception, which I believe should be done for the above as well.
> >
> > All failures have a traceback similar to this:
> >
> > 1: Error during test:  Traceback (most recent call last):
> > 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton-test", line 355, in run
> > 1:       phase()
> > 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/engine.py", line 1882, in testIdleTimeout
> > 1:       server = common.TestServer(idle_timeout=idle_timeout)
> > 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/common.py", line 127, in __init__
> > 1:       self.reactor = Container(self)
> > 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/reactor.py", line 588, in __init__
> > 1:       self.ssl = SSLConfig()
> > 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/reactor.py", line 566, in __init__
> > 1:       self.client = SSLDomain(SSLDomain.MODE_CLIENT)
> > 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py", line 3371, in __init__
> > 1:       raise SSLUnavailable()
> > 1:   SSLUnavailable
> >
> > I suspect the reactor shouldn't fail in these cases if SSL is not available.
> 
> I have checked in a fix for that to master.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@qpid.apache.org
> For additional commands, e-mail: users-help@qpid.apache.org
> 



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


Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Gordon Sim <gs...@redhat.com>.
On 03/09/2015 02:14 PM, Ken Giusti wrote:
> Additionally, the following python unit tests fail unless the openssl libraries are installed:
>
> proton_tests.engine.ServerTest.testIdleTimeout
> proton_tests.engine.ServerTest.testKeepalive
> proton_tests.messenger.IdleTimeoutTest.testIdleTimeout
> proton_tests.utils.SyncRequestResponseTest.test_request_response
>
> All the other ssl tests raise the Skip exception, which I believe should be done for the above as well.
>
> All failures have a traceback similar to this:
>
> 1: Error during test:  Traceback (most recent call last):
> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton-test", line 355, in run
> 1:       phase()
> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/engine.py", line 1882, in testIdleTimeout
> 1:       server = common.TestServer(idle_timeout=idle_timeout)
> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/common.py", line 127, in __init__
> 1:       self.reactor = Container(self)
> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/reactor.py", line 588, in __init__
> 1:       self.ssl = SSLConfig()
> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/reactor.py", line 566, in __init__
> 1:       self.client = SSLDomain(SSLDomain.MODE_CLIENT)
> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py", line 3371, in __init__
> 1:       raise SSLUnavailable()
> 1:   SSLUnavailable
>
> I suspect the reactor shouldn't fail in these cases if SSL is not available.

I have checked in a fix for that to master.


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


Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Gordon Sim <gs...@redhat.com>.
On 03/09/2015 02:14 PM, Ken Giusti wrote:
> Additionally, the following python unit tests fail unless the openssl libraries are installed:
>
> proton_tests.engine.ServerTest.testIdleTimeout
> proton_tests.engine.ServerTest.testKeepalive
> proton_tests.messenger.IdleTimeoutTest.testIdleTimeout
> proton_tests.utils.SyncRequestResponseTest.test_request_response
>
> All the other ssl tests raise the Skip exception, which I believe should be done for the above as well.
>
> All failures have a traceback similar to this:
>
> 1: Error during test:  Traceback (most recent call last):
> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton-test", line 355, in run
> 1:       phase()
> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/engine.py", line 1882, in testIdleTimeout
> 1:       server = common.TestServer(idle_timeout=idle_timeout)
> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/common.py", line 127, in __init__
> 1:       self.reactor = Container(self)
> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/reactor.py", line 588, in __init__
> 1:       self.ssl = SSLConfig()
> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/reactor.py", line 566, in __init__
> 1:       self.client = SSLDomain(SSLDomain.MODE_CLIENT)
> 1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py", line 3371, in __init__
> 1:       raise SSLUnavailable()
> 1:   SSLUnavailable
>
> I suspect the reactor shouldn't fail in these cases if SSL is not available.

I have checked in a fix for that to master.


Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Ken Giusti <kg...@redhat.com>.
Additionally, the following python unit tests fail unless the openssl libraries are installed:

proton_tests.engine.ServerTest.testIdleTimeout
proton_tests.engine.ServerTest.testKeepalive
proton_tests.messenger.IdleTimeoutTest.testIdleTimeout
proton_tests.utils.SyncRequestResponseTest.test_request_response

All the other ssl tests raise the Skip exception, which I believe should be done for the above as well.

All failures have a traceback similar to this:

1: Error during test:  Traceback (most recent call last):
1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton-test", line 355, in run
1:       phase()
1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/engine.py", line 1882, in testIdleTimeout
1:       server = common.TestServer(idle_timeout=idle_timeout)
1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/common.py", line 127, in __init__
1:       self.reactor = Container(self)
1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/reactor.py", line 588, in __init__
1:       self.ssl = SSLConfig()
1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/reactor.py", line 566, in __init__
1:       self.client = SSLDomain(SSLDomain.MODE_CLIENT)
1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py", line 3371, in __init__
1:       raise SSLUnavailable()
1:   SSLUnavailable

I suspect the reactor shouldn't fail in these cases if SSL is not available.

-K



----- Original Message -----
> From: "Rafael Schloming" <rh...@alum.mit.edu>
> To: proton@qpid.apache.org, users@qpid.apache.org
> Sent: Monday, March 9, 2015 7:57:53 AM
> Subject: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> 
> Hi Everyone,
> 
> I've posted 0.9-rc-1 in the usual places. Please have a look and register
> your vote:
> 
> Source code can be found here:
> 
>     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
> 
> Java binaries are here:
> 
>     https://repository.apache.org/content/repositories/orgapacheqpid-1025
> 
> [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> [   ] No, because ...
> --Rafael
> 

-- 
-K

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Rafael Schloming <rh...@alum.mit.edu>.
Hi Everyone,

FYI, I'm going to be out of contact for a few days again. So far the two
issues discovered in this RC are quite isolated, so please continue to test
RC 1 and make sure any new fixes go on the 0.9 branch. I will spin another
RC off of the branch as soon as I'm back.

Thanks,

--Rafael


On Tue, Mar 10, 2015 at 12:57 AM, Rafael Schloming <rh...@alum.mit.edu> wrote:

> Hi Everyone,
>
> I've posted 0.9-rc-1 in the usual places. Please have a look and register
> your vote:
>
> Source code can be found here:
>
>     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
>
> Java binaries are here:
>
>     https://repository.apache.org/content/repositories/orgapacheqpid-1025
>
> [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> [   ] No, because ...
> --Rafael
>

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Rafael Schloming <rh...@alum.mit.edu>.
FYI, unlike previous releases I've created a 0.9 branch so that work can
continue on trunk without impacting the release. Please ensure that any
fixes intended for the release actually end up on the 0.9 release branch.

--Rafael

On Mon, Mar 9, 2015 at 7:57 AM, Rafael Schloming <rh...@alum.mit.edu> wrote:

> Hi Everyone,
>
> I've posted 0.9-rc-1 in the usual places. Please have a look and register
> your vote:
>
> Source code can be found here:
>
>     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
>
> Java binaries are here:
>
>     https://repository.apache.org/content/repositories/orgapacheqpid-1025
>
> [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> [   ] No, because ...
> --Rafael
>

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Rafael Schloming <rh...@alum.mit.edu>.
FYI, unlike previous releases I've created a 0.9 branch so that work can
continue on trunk without impacting the release. Please ensure that any
fixes intended for the release actually end up on the 0.9 release branch.

--Rafael

On Mon, Mar 9, 2015 at 7:57 AM, Rafael Schloming <rh...@alum.mit.edu> wrote:

> Hi Everyone,
>
> I've posted 0.9-rc-1 in the usual places. Please have a look and register
> your vote:
>
> Source code can be found here:
>
>     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
>
> Java binaries are here:
>
>     https://repository.apache.org/content/repositories/orgapacheqpid-1025
>
> [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> [   ] No, because ...
> --Rafael
>

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Ken Giusti <kg...@redhat.com>.
Additionally, the following python unit tests fail unless the openssl libraries are installed:

proton_tests.engine.ServerTest.testIdleTimeout
proton_tests.engine.ServerTest.testKeepalive
proton_tests.messenger.IdleTimeoutTest.testIdleTimeout
proton_tests.utils.SyncRequestResponseTest.test_request_response

All the other ssl tests raise the Skip exception, which I believe should be done for the above as well.

All failures have a traceback similar to this:

1: Error during test:  Traceback (most recent call last):
1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton-test", line 355, in run
1:       phase()
1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/engine.py", line 1882, in testIdleTimeout
1:       server = common.TestServer(idle_timeout=idle_timeout)
1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/tests/python/proton_tests/common.py", line 127, in __init__
1:       self.reactor = Container(self)
1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/reactor.py", line 588, in __init__
1:       self.ssl = SSLConfig()
1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/reactor.py", line 566, in __init__
1:       self.client = SSLDomain(SSLDomain.MODE_CLIENT)
1:     File "/home/kgiusti/Downloads/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py", line 3371, in __init__
1:       raise SSLUnavailable()
1:   SSLUnavailable

I suspect the reactor shouldn't fail in these cases if SSL is not available.

-K



----- Original Message -----
> From: "Rafael Schloming" <rh...@alum.mit.edu>
> To: proton@qpid.apache.org, users@qpid.apache.org
> Sent: Monday, March 9, 2015 7:57:53 AM
> Subject: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> 
> Hi Everyone,
> 
> I've posted 0.9-rc-1 in the usual places. Please have a look and register
> your vote:
> 
> Source code can be found here:
> 
>     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
> 
> Java binaries are here:
> 
>     https://repository.apache.org/content/repositories/orgapacheqpid-1025
> 
> [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> [   ] No, because ...
> --Rafael
> 

-- 
-K

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


Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Rafael Schloming <rh...@alum.mit.edu>.
Hi Everyone,

FYI, I'm going to be out of contact for a few days again. So far the two
issues discovered in this RC are quite isolated, so please continue to test
RC 1 and make sure any new fixes go on the 0.9 branch. I will spin another
RC off of the branch as soon as I'm back.

Thanks,

--Rafael


On Tue, Mar 10, 2015 at 12:57 AM, Rafael Schloming <rh...@alum.mit.edu> wrote:

> Hi Everyone,
>
> I've posted 0.9-rc-1 in the usual places. Please have a look and register
> your vote:
>
> Source code can be found here:
>
>     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
>
> Java binaries are here:
>
>     https://repository.apache.org/content/repositories/orgapacheqpid-1025
>
> [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> [   ] No, because ...
> --Rafael
>

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by "Darryl L. Pierce" <dp...@redhat.com>.
On Mon, Mar 09, 2015 at 09:13:07AM -0400, Ken Giusti wrote:
> Anyone else getting the following errors when building the docs?
> 
> 
> ;; This buffer is for notes you don't want to save, and for Lisp evaluation.
> ;; If you want to create a file, visit that file with C-x C-f,
> ;; then enter the text in that file's own buffer.
> 
> Generating example index...
> finalizing index lists...
> lookup cache used 974/65536 hits=10705 misses=982
> finished...
> Built target docs-c
>   [
>   Error: Could not find a file or object named proton/handlers.py
>   Error: Could not find a file or object named proton/reactor.py
>   Error: Could not find a file or object named proton/utils.py
>   Error: Could not find a file or object named proton/wrapper.py
>   [..................................................................
> +--------------------------------------------------------------------------------------------------------------------------------------------------------------------
> | File /home/kgiusti/work/proton/0.9rc1/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py, line 3778, in proton.Url
> |   Warning: Line 3781: Improper paragraph indentation.
> |   
>   [........................................................................................................................................................................]
> Built target docs-py

I'm seeing it on my end, yes. The build finishes, but the installed docs
don't include the messaging package or anything outside of the proton
module.

-- 
Darryl L. Pierce, Sr. Software Engineer @ Red Hat, Inc.
Delivering value year after year.
Red Hat ranks #1 in value among software vendors.
http://www.redhat.com/promo/vendor/


Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Ken Giusti <kg...@redhat.com>.
Done!

----- Original Message -----
> From: "Rafael Schloming" <rh...@alum.mit.edu>
> To: proton@qpid.apache.org
> Cc: users@qpid.apache.org
> Sent: Monday, March 9, 2015 2:40:18 PM
> Subject: Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> 
> Can you pull this over to the 0.9 branch?
> 
> --Rafael
> 
> On Mon, Mar 9, 2015 at 1:41 PM, Ken Giusti <kg...@redhat.com> wrote:
> 
> > FWIW:  pushed a fix to these doc errors:
> >
> >
> > https://git-wip-us.apache.org/repos/asf?p=qpid-proton.git;a=commit;h=bc2b630eb969710b04a861797567ab2dc368020a
> >
> >
> >
> >
> > ----- Original Message -----
> > > From: "Ken Giusti" <kg...@redhat.com>
> > > To: users@qpid.apache.org
> > > Cc: proton@qpid.apache.org
> > > Sent: Monday, March 9, 2015 9:13:07 AM
> > > Subject: Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> > >
> > > Anyone else getting the following errors when building the docs?
> > >
> > >
> > > ;; This buffer is for notes you don't want to save, and for Lisp
> > evaluation.
> > > ;; If you want to create a file, visit that file with C-x C-f,
> > > ;; then enter the text in that file's own buffer.
> > >
> > > Generating example index...
> > > finalizing index lists...
> > > lookup cache used 974/65536 hits=10705 misses=982
> > > finished...
> > > Built target docs-c
> > >   [
> > >   Error: Could not find a file or object named proton/handlers.py
> > >   Error: Could not find a file or object named proton/reactor.py
> > >   Error: Could not find a file or object named proton/utils.py
> > >   Error: Could not find a file or object named proton/wrapper.py
> > >   [..................................................................
> > >
> > +--------------------------------------------------------------------------------------------------------------------------------------------------------------------
> > > | File
> > > |
> > /home/kgiusti/work/proton/0.9rc1/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py,
> > > | line 3778, in proton.Url
> > > |   Warning: Line 3781: Improper paragraph indentation.
> > > |
> > >
> >  [........................................................................................................................................................................]
> > > Built target docs-py
> > >
> > >
> > >
> > >
> > > ----- Original Message -----
> > > > From: "Rafael Schloming" <rh...@alum.mit.edu>
> > > > To: proton@qpid.apache.org, users@qpid.apache.org
> > > > Sent: Monday, March 9, 2015 7:57:53 AM
> > > > Subject: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> > > >
> > > > Hi Everyone,
> > > >
> > > > I've posted 0.9-rc-1 in the usual places. Please have a look and
> > register
> > > > your vote:
> > > >
> > > > Source code can be found here:
> > > >
> > > >     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
> > > >
> > > > Java binaries are here:
> > > >
> > > >
> > https://repository.apache.org/content/repositories/orgapacheqpid-1025
> > > >
> > > > [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> > > > [   ] No, because ...
> > > > --Rafael
> > > >
> > >
> > > --
> > > -K
> > >
> >
> > --
> > -K
> >
> 

-- 
-K

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Rafael Schloming <rh...@alum.mit.edu>.
Can you pull this over to the 0.9 branch?

--Rafael

On Mon, Mar 9, 2015 at 1:41 PM, Ken Giusti <kg...@redhat.com> wrote:

> FWIW:  pushed a fix to these doc errors:
>
>
> https://git-wip-us.apache.org/repos/asf?p=qpid-proton.git;a=commit;h=bc2b630eb969710b04a861797567ab2dc368020a
>
>
>
>
> ----- Original Message -----
> > From: "Ken Giusti" <kg...@redhat.com>
> > To: users@qpid.apache.org
> > Cc: proton@qpid.apache.org
> > Sent: Monday, March 9, 2015 9:13:07 AM
> > Subject: Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> >
> > Anyone else getting the following errors when building the docs?
> >
> >
> > ;; This buffer is for notes you don't want to save, and for Lisp
> evaluation.
> > ;; If you want to create a file, visit that file with C-x C-f,
> > ;; then enter the text in that file's own buffer.
> >
> > Generating example index...
> > finalizing index lists...
> > lookup cache used 974/65536 hits=10705 misses=982
> > finished...
> > Built target docs-c
> >   [
> >   Error: Could not find a file or object named proton/handlers.py
> >   Error: Could not find a file or object named proton/reactor.py
> >   Error: Could not find a file or object named proton/utils.py
> >   Error: Could not find a file or object named proton/wrapper.py
> >   [..................................................................
> >
> +--------------------------------------------------------------------------------------------------------------------------------------------------------------------
> > | File
> > |
> /home/kgiusti/work/proton/0.9rc1/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py,
> > | line 3778, in proton.Url
> > |   Warning: Line 3781: Improper paragraph indentation.
> > |
> >
>  [........................................................................................................................................................................]
> > Built target docs-py
> >
> >
> >
> >
> > ----- Original Message -----
> > > From: "Rafael Schloming" <rh...@alum.mit.edu>
> > > To: proton@qpid.apache.org, users@qpid.apache.org
> > > Sent: Monday, March 9, 2015 7:57:53 AM
> > > Subject: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> > >
> > > Hi Everyone,
> > >
> > > I've posted 0.9-rc-1 in the usual places. Please have a look and
> register
> > > your vote:
> > >
> > > Source code can be found here:
> > >
> > >     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
> > >
> > > Java binaries are here:
> > >
> > >
> https://repository.apache.org/content/repositories/orgapacheqpid-1025
> > >
> > > [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> > > [   ] No, because ...
> > > --Rafael
> > >
> >
> > --
> > -K
> >
>
> --
> -K
>

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Rafael Schloming <rh...@alum.mit.edu>.
Can you pull this over to the 0.9 branch?

--Rafael

On Mon, Mar 9, 2015 at 1:41 PM, Ken Giusti <kg...@redhat.com> wrote:

> FWIW:  pushed a fix to these doc errors:
>
>
> https://git-wip-us.apache.org/repos/asf?p=qpid-proton.git;a=commit;h=bc2b630eb969710b04a861797567ab2dc368020a
>
>
>
>
> ----- Original Message -----
> > From: "Ken Giusti" <kg...@redhat.com>
> > To: users@qpid.apache.org
> > Cc: proton@qpid.apache.org
> > Sent: Monday, March 9, 2015 9:13:07 AM
> > Subject: Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> >
> > Anyone else getting the following errors when building the docs?
> >
> >
> > ;; This buffer is for notes you don't want to save, and for Lisp
> evaluation.
> > ;; If you want to create a file, visit that file with C-x C-f,
> > ;; then enter the text in that file's own buffer.
> >
> > Generating example index...
> > finalizing index lists...
> > lookup cache used 974/65536 hits=10705 misses=982
> > finished...
> > Built target docs-c
> >   [
> >   Error: Could not find a file or object named proton/handlers.py
> >   Error: Could not find a file or object named proton/reactor.py
> >   Error: Could not find a file or object named proton/utils.py
> >   Error: Could not find a file or object named proton/wrapper.py
> >   [..................................................................
> >
> +--------------------------------------------------------------------------------------------------------------------------------------------------------------------
> > | File
> > |
> /home/kgiusti/work/proton/0.9rc1/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py,
> > | line 3778, in proton.Url
> > |   Warning: Line 3781: Improper paragraph indentation.
> > |
> >
>  [........................................................................................................................................................................]
> > Built target docs-py
> >
> >
> >
> >
> > ----- Original Message -----
> > > From: "Rafael Schloming" <rh...@alum.mit.edu>
> > > To: proton@qpid.apache.org, users@qpid.apache.org
> > > Sent: Monday, March 9, 2015 7:57:53 AM
> > > Subject: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> > >
> > > Hi Everyone,
> > >
> > > I've posted 0.9-rc-1 in the usual places. Please have a look and
> register
> > > your vote:
> > >
> > > Source code can be found here:
> > >
> > >     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
> > >
> > > Java binaries are here:
> > >
> > >
> https://repository.apache.org/content/repositories/orgapacheqpid-1025
> > >
> > > [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> > > [   ] No, because ...
> > > --Rafael
> > >
> >
> > --
> > -K
> >
>
> --
> -K
>

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Ken Giusti <kg...@redhat.com>.
FWIW:  pushed a fix to these doc errors:

https://git-wip-us.apache.org/repos/asf?p=qpid-proton.git;a=commit;h=bc2b630eb969710b04a861797567ab2dc368020a




----- Original Message -----
> From: "Ken Giusti" <kg...@redhat.com>
> To: users@qpid.apache.org
> Cc: proton@qpid.apache.org
> Sent: Monday, March 9, 2015 9:13:07 AM
> Subject: Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> 
> Anyone else getting the following errors when building the docs?
> 
> 
> ;; This buffer is for notes you don't want to save, and for Lisp evaluation.
> ;; If you want to create a file, visit that file with C-x C-f,
> ;; then enter the text in that file's own buffer.
> 
> Generating example index...
> finalizing index lists...
> lookup cache used 974/65536 hits=10705 misses=982
> finished...
> Built target docs-c
>   [
>   Error: Could not find a file or object named proton/handlers.py
>   Error: Could not find a file or object named proton/reactor.py
>   Error: Could not find a file or object named proton/utils.py
>   Error: Could not find a file or object named proton/wrapper.py
>   [..................................................................
> +--------------------------------------------------------------------------------------------------------------------------------------------------------------------
> | File
> | /home/kgiusti/work/proton/0.9rc1/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py,
> | line 3778, in proton.Url
> |   Warning: Line 3781: Improper paragraph indentation.
> |   
>   [........................................................................................................................................................................]
> Built target docs-py
> 
> 
> 
> 
> ----- Original Message -----
> > From: "Rafael Schloming" <rh...@alum.mit.edu>
> > To: proton@qpid.apache.org, users@qpid.apache.org
> > Sent: Monday, March 9, 2015 7:57:53 AM
> > Subject: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> > 
> > Hi Everyone,
> > 
> > I've posted 0.9-rc-1 in the usual places. Please have a look and register
> > your vote:
> > 
> > Source code can be found here:
> > 
> >     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
> > 
> > Java binaries are here:
> > 
> >     https://repository.apache.org/content/repositories/orgapacheqpid-1025
> > 
> > [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> > [   ] No, because ...
> > --Rafael
> > 
> 
> --
> -K
> 

-- 
-K

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Ken Giusti <kg...@redhat.com>.
FWIW:  pushed a fix to these doc errors:

https://git-wip-us.apache.org/repos/asf?p=qpid-proton.git;a=commit;h=bc2b630eb969710b04a861797567ab2dc368020a




----- Original Message -----
> From: "Ken Giusti" <kg...@redhat.com>
> To: users@qpid.apache.org
> Cc: proton@qpid.apache.org
> Sent: Monday, March 9, 2015 9:13:07 AM
> Subject: Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> 
> Anyone else getting the following errors when building the docs?
> 
> 
> ;; This buffer is for notes you don't want to save, and for Lisp evaluation.
> ;; If you want to create a file, visit that file with C-x C-f,
> ;; then enter the text in that file's own buffer.
> 
> Generating example index...
> finalizing index lists...
> lookup cache used 974/65536 hits=10705 misses=982
> finished...
> Built target docs-c
>   [
>   Error: Could not find a file or object named proton/handlers.py
>   Error: Could not find a file or object named proton/reactor.py
>   Error: Could not find a file or object named proton/utils.py
>   Error: Could not find a file or object named proton/wrapper.py
>   [..................................................................
> +--------------------------------------------------------------------------------------------------------------------------------------------------------------------
> | File
> | /home/kgiusti/work/proton/0.9rc1/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py,
> | line 3778, in proton.Url
> |   Warning: Line 3781: Improper paragraph indentation.
> |   
>   [........................................................................................................................................................................]
> Built target docs-py
> 
> 
> 
> 
> ----- Original Message -----
> > From: "Rafael Schloming" <rh...@alum.mit.edu>
> > To: proton@qpid.apache.org, users@qpid.apache.org
> > Sent: Monday, March 9, 2015 7:57:53 AM
> > Subject: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> > 
> > Hi Everyone,
> > 
> > I've posted 0.9-rc-1 in the usual places. Please have a look and register
> > your vote:
> > 
> > Source code can be found here:
> > 
> >     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
> > 
> > Java binaries are here:
> > 
> >     https://repository.apache.org/content/repositories/orgapacheqpid-1025
> > 
> > [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> > [   ] No, because ...
> > --Rafael
> > 
> 
> --
> -K
> 

-- 
-K

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


Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Alan Conway <ac...@redhat.com>.
On Mon, 2015-03-09 at 09:13 -0400, Ken Giusti wrote:
> Anyone else getting the following errors when building the docs?
> 
> 
> ;; This buffer is for notes you don't want to save, and for Lisp evaluation.
> ;; If you want to create a file, visit that file with C-x C-f,
> ;; then enter the text in that file's own buffer.
> 
> Generating example index...
> finalizing index lists...
> lookup cache used 974/65536 hits=10705 misses=982
> finished...
> Built target docs-c
>   [
>   Error: Could not find a file or object named proton/handlers.py
>   Error: Could not find a file or object named proton/reactor.py
>   Error: Could not find a file or object named proton/utils.py
>   Error: Could not find a file or object named proton/wrapper.py

Works for me, you probably need to re-run cmake.



Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Alan Conway <ac...@redhat.com>.
On Mon, 2015-03-09 at 09:13 -0400, Ken Giusti wrote:
> Anyone else getting the following errors when building the docs?
> 
> 
> ;; This buffer is for notes you don't want to save, and for Lisp evaluation.
> ;; If you want to create a file, visit that file with C-x C-f,
> ;; then enter the text in that file's own buffer.
> 
> Generating example index...
> finalizing index lists...
> lookup cache used 974/65536 hits=10705 misses=982
> finished...
> Built target docs-c
>   [
>   Error: Could not find a file or object named proton/handlers.py
>   Error: Could not find a file or object named proton/reactor.py
>   Error: Could not find a file or object named proton/utils.py
>   Error: Could not find a file or object named proton/wrapper.py

Works for me, you probably need to re-run cmake.



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


Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by "Darryl L. Pierce" <dp...@redhat.com>.
On Mon, Mar 09, 2015 at 09:13:07AM -0400, Ken Giusti wrote:
> Anyone else getting the following errors when building the docs?
> 
> 
> ;; This buffer is for notes you don't want to save, and for Lisp evaluation.
> ;; If you want to create a file, visit that file with C-x C-f,
> ;; then enter the text in that file's own buffer.
> 
> Generating example index...
> finalizing index lists...
> lookup cache used 974/65536 hits=10705 misses=982
> finished...
> Built target docs-c
>   [
>   Error: Could not find a file or object named proton/handlers.py
>   Error: Could not find a file or object named proton/reactor.py
>   Error: Could not find a file or object named proton/utils.py
>   Error: Could not find a file or object named proton/wrapper.py
>   [..................................................................
> +--------------------------------------------------------------------------------------------------------------------------------------------------------------------
> | File /home/kgiusti/work/proton/0.9rc1/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py, line 3778, in proton.Url
> |   Warning: Line 3781: Improper paragraph indentation.
> |   
>   [........................................................................................................................................................................]
> Built target docs-py

I'm seeing it on my end, yes. The build finishes, but the installed docs
don't include the messaging package or anything outside of the proton
module.

-- 
Darryl L. Pierce, Sr. Software Engineer @ Red Hat, Inc.
Delivering value year after year.
Red Hat ranks #1 in value among software vendors.
http://www.redhat.com/promo/vendor/


Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Ken Giusti <kg...@redhat.com>.
Anyone else getting the following errors when building the docs?


;; This buffer is for notes you don't want to save, and for Lisp evaluation.
;; If you want to create a file, visit that file with C-x C-f,
;; then enter the text in that file's own buffer.

Generating example index...
finalizing index lists...
lookup cache used 974/65536 hits=10705 misses=982
finished...
Built target docs-c
  [
  Error: Could not find a file or object named proton/handlers.py
  Error: Could not find a file or object named proton/reactor.py
  Error: Could not find a file or object named proton/utils.py
  Error: Could not find a file or object named proton/wrapper.py
  [..................................................................
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------
| File /home/kgiusti/work/proton/0.9rc1/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py, line 3778, in proton.Url
|   Warning: Line 3781: Improper paragraph indentation.
|   
  [........................................................................................................................................................................]
Built target docs-py




----- Original Message -----
> From: "Rafael Schloming" <rh...@alum.mit.edu>
> To: proton@qpid.apache.org, users@qpid.apache.org
> Sent: Monday, March 9, 2015 7:57:53 AM
> Subject: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> 
> Hi Everyone,
> 
> I've posted 0.9-rc-1 in the usual places. Please have a look and register
> your vote:
> 
> Source code can be found here:
> 
>     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
> 
> Java binaries are here:
> 
>     https://repository.apache.org/content/repositories/orgapacheqpid-1025
> 
> [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> [   ] No, because ...
> --Rafael
> 

-- 
-K

Re: VOTE: Release Proton 0.9-rc-1 as 0.9 final

Posted by Ken Giusti <kg...@redhat.com>.
Anyone else getting the following errors when building the docs?


;; This buffer is for notes you don't want to save, and for Lisp evaluation.
;; If you want to create a file, visit that file with C-x C-f,
;; then enter the text in that file's own buffer.

Generating example index...
finalizing index lists...
lookup cache used 974/65536 hits=10705 misses=982
finished...
Built target docs-c
  [
  Error: Could not find a file or object named proton/handlers.py
  Error: Could not find a file or object named proton/reactor.py
  Error: Could not find a file or object named proton/utils.py
  Error: Could not find a file or object named proton/wrapper.py
  [..................................................................
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------
| File /home/kgiusti/work/proton/0.9rc1/qpid-proton-0.9-rc-1/proton-c/bindings/python/proton/__init__.py, line 3778, in proton.Url
|   Warning: Line 3781: Improper paragraph indentation.
|   
  [........................................................................................................................................................................]
Built target docs-py




----- Original Message -----
> From: "Rafael Schloming" <rh...@alum.mit.edu>
> To: proton@qpid.apache.org, users@qpid.apache.org
> Sent: Monday, March 9, 2015 7:57:53 AM
> Subject: VOTE: Release Proton 0.9-rc-1 as 0.9 final
> 
> Hi Everyone,
> 
> I've posted 0.9-rc-1 in the usual places. Please have a look and register
> your vote:
> 
> Source code can be found here:
> 
>     http://people.apache.org/~rhs/qpid-proton-0.9-rc-1/
> 
> Java binaries are here:
> 
>     https://repository.apache.org/content/repositories/orgapacheqpid-1025
> 
> [   ] Yes, release Proton 0.9-rc-1 as 0.9 final
> [   ] No, because ...
> --Rafael
> 

-- 
-K

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