Re: Issue 3705 in reviewboard: Unable to use 'rbt post' with https and Python 2.7.9

2015-05-01 Thread reviewboard

Updates:
Status: PendingReview
Owner: trowb...@gmail.com
Labels: Component-RBTools

Comment #5 on issue 3705 by trowb...@gmail.com: Unable to use 'rbt post'  
with https and Python 2.7.9

https://code.google.com/p/reviewboard/issues/detail?id=3705

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/d/optout.


Re: Issue 3705 in reviewboard: Unable to use 'rbt post' with https and Python 2.7.9

2015-05-01 Thread reviewboard


Comment #4 on issue 3705 by trowb...@gmail.com: Unable to use 'rbt post'  
with https and Python 2.7.9

https://code.google.com/p/reviewboard/issues/detail?id=3705

Issue 3823 has been merged into this issue.

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/d/optout.


Re: Issue 3705 in reviewboard: Unable to use 'rbt post' with https and Python 2.7.9

2015-05-01 Thread reviewboard

Updates:
Status: Fixed

Comment #6 on issue 3705 by trowb...@gmail.com: Unable to use 'rbt post'  
with https and Python 2.7.9

https://code.google.com/p/reviewboard/issues/detail?id=3705

Fixed in rbtools release-0.7.x (295d9c7). This will ship in 0.7.3

The fix adds a --disable-ssl-verification command-line flag and  
DISABLE_SSL_VERIFICATION config variable.


--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/d/optout.


Re: Issue 3705 in reviewboard: Unable to use 'rbt post' with https and Python 2.7.9

2015-04-30 Thread reviewboard


Comment #3 on issue 3705 by dirkmoer...@gmail.com: Unable to use 'rbt post'  
with https and Python 2.7.9

https://code.google.com/p/reviewboard/issues/detail?id=3705

I had the same problem due to a self signed certificate.

Adding to the beginning rbtools/api/request.py the lines:

===
import ssl
if hasattr(ssl, '_create_unverified_context'):
ssl._create_default_https_context = ssl._create_unverified_context
===

works around the problem for me.

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/d/optout.