summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* List system dependencies for running common testsliberty-eolstable/libertyAndreas Jaeger2016-06-302-0/+35
| | | | | | | | | | | | | | | | | | | | Add an other-requirements.txt file containing a cross-platform list of dependencies needed for running included tox-based tests. Also include a tox environment for convenience calling the bindep[*] utility to list any missing system requirements. This change is self-testing. For other-requirements.txt see also http://docs.openstack.org/infra/manual/drivers.html#package-requirements [*] http://docs.openstack.org/infra/bindep/ Also, merge Xenial followup change into this. Change-Id: Ifa3d417d9c3f8c172980a593c0a5a4a29987366a (cherry picked from commit f74d9e3d82ad46efb27069487670165e2c30dc45) (cherry picked from commit 5dc965e268a5a1fa0c39dc6bcef4ef9bf717c8c0)
* Updated from global requirementsOpenStack Proposal Bot2016-04-291-1/+1
| | | | Change-Id: If95cde88d640588a54062fd41408e07f405d600c
* Mark password/secret options as secret1.7.4Brant Knudson2016-01-185-5/+7
| | | | | | | | | | Password, token, and secret options should be marked as secret=True so that when the value is logged the logger knows to obfuscate the value. Change-Id: I6ebdfa3bf6faf37bc11640a5826b3b55bb920fc4 Closes-Bug: 1534299 (cherry picked from commit 04f9f33b4b6079d39c3feea0b1ec1211a1de6a04)
* Swap the order of username deprecationMonty Taylor2016-01-185-9/+9
| | | | | | | | | | | | | | The attempt at a move to user-name is an exercise in churn, and is filling everyone's logs with admonitions to change the name of their variables - which does not work if they do. Swap this, effectively reverting the attempt at a move. user-name will continue to work on the off chance anyone started consuming that path, which is unlikely because none of the consuming programs expose that as an actual option. Closes-Bug: 1498247 Change-Id: I62d991fda1df63c9cbabfde2f6836bc031f5147c (cherry picked from commit 13bb2f74b0d65c1fef30f77d710d56e51e5f7841)
* Updated from global requirements1.7.3OpenStack Proposal Bot2015-12-161-1/+1
| | | | Change-Id: I19186f6a33b0be211d39388ddb6b81d014111de1
* Remove hardcoded endpoint filter for update passwordHaneef Ali2015-11-302-2/+23
| | | | | | | | | | | | User password update hardcoded the endpoint_filter to always use the public endpoint. This will break deployments where services behind the firewall have no access to the public endpoint. Endpoint selection should be allowed by the end user (i.e. openstack --os-interface internal user password set). Closes-Bug: 1503459 Change-Id: Ib11d60cd8e81b99aedb27f1cbbf6b79218045cf0 (cherry picked from commit d47da3b59c581dd3bb6bd4d75de819d0fd734fa5)
* Updated from global requirementsOpenStack Proposal Bot2015-10-191-1/+1
| | | | Change-Id: I186e3232768aac4ca71d6c6635bcc1217e213ee6
* Updated from global requirementsOpenStack Proposal Bot2015-10-131-1/+1
| | | | Change-Id: Ic1fe2c4a4af5248cf93450647ab458c5f9b460af
* Redirect on 303 in SAML plugin1.7.2Jamie Lennox2015-10-022-9/+36
| | | | | | | | | | | | The SAML plugin handles redirects in a custom manner but currently only checks for the 302 redirect code. This doesn't cover the mod_auth_mellon case which responds with a 303. Also handle the 303 redirect case. Change-Id: Idab5f381fcbfb8c561184845d3aa5c8aab142ecd Closes-Bug: #1501918 (cherry picked from commit 9cd71c064c77a22a0a58084a2abab77b023017b5)
* Merge "Updated from global requirements" into stable/libertyJenkins2015-10-023-3/+3
|\
| * Updated from global requirementsOpenStack Proposal Bot2015-09-293-3/+3
| | | | | | | | Change-Id: I8a90eef06e2014d80608a79c7377fb5bcc3db1f0
* | Merge "Update .gitreview for stable/liberty" into stable/libertyJenkins2015-10-021-0/+1
|\ \
| * | Update .gitreview for stable/libertyDoug Hellmann2015-09-211-0/+1
| |/ | | | | | | Change-Id: I4f4f10811f8289ab43d75a16b82fb5382d6bdd06
* | HTTPClient/region_name deprecation test updatesCorey Bryant2015-10-0210-142/+226
|/ | | | | | | | | | | | | Creating an HTTPClient without a session is deprecated and the ServiceCatalog's region_name parameter is also deprecated. This follows suite with the following commits to update tests to handle deprecation warnings: 803eb235d50daad27074198effc98ca536f1550f 42bd016e1f0e011ba745dba243e62401298e324c Change-Id: I1c5a3dc2c8448873696262ca951c58666c692a61 Closes-Bug: #1499790 (cherry picked from commit 5dea3b22fcc672f3e3405f5abec471929c501c0a)
* Merge "Adding back exception mapping for ConnectionError"1.7.1Jenkins2015-09-091-0/+1
|\
| * Adding back exception mapping for ConnectionErrorlin-hua-cheng2015-09-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | The mapping for ConnectionError to ConnectionRefused have been remove in a recent cleanup to move all exception to keystoneclient.exceptions related commit: 26534dadb1d0be00b87b632a038839ab1c18cfe4 Adding the mapping back for backward compatability. Change-Id: I6f4627b9cd68615b509d17910fe2c1605e89fc26 Closes-Bug: #1492600
* | Merge "Fixes missing socket attribute error during init_poolmanager"Jenkins2015-09-082-4/+54
|\ \ | |/ |/|
| * Fixes missing socket attribute error during init_poolmanagerClaudiu Belu2015-08-262-4/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On Windows, the 'socket' python module does not contain the attributes TCP_KEEPCNT or TCP_KEEPINTVL, causing services consuming the library to malfunction. Adds conditionals for adding the mentioned socket attributes to the socket options. socket.SIO_KEEPALIVE_VALS cannot be added as a socket option for Windows, as there is another way entirely to enable that option. Change-Id: I2e9746ae65400bbd23c3b48dfc3167de9eb66494 Partial-Bug: #1483696
* | Merge "Deprecate create Discover without session"1.7.0Jenkins2015-09-032-28/+64
|\ \
| * | Deprecate create Discover without sessionBrant Knudson2015-09-022-28/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The comments indicated that creating a Discover without a session is deprecated, but there was no warning generated. Also, updated the Discover() parameter docstrings with the standard deprecation info (e.g., in what release it's deprecated and when we might remove it). bp deprecations Change-Id: I1d42b74aa72c15b95ac3c365b40d8c622869ed7e
* | | Merge "Mask passwords when logging the HTTP response"Jenkins2015-09-032-1/+32
|\ \ \
| * | | Mask passwords when logging the HTTP responseMatt Riedemann2015-08-312-1/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We should sanitize the response body before logging to make sure we aren't leaking through credentials like in the case of the response from the os-initialize_connection volume API. Closes-Bug: #1490693 Change-Id: Ifd95d3fb624b4636fb72cc11762af62e00a026a0
* | | | Update path to subunit2html in post_test_hookMatt Riedemann2015-09-021-1/+1
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Per: http://lists.openstack.org/pipermail/openstack-dev/2015-August/072982.html The location of subunit2html changed on the images in the gate so update the path used in the post_test_hook. Long-term we should just use what's in devstack-gate. Change-Id: I5e50e7d7ad845aba26403df1df412c0a139a6dc7 Closes-Bug: #1491646
* | | Merge "Update deprecation text for Session properties"Jenkins2015-09-021-2/+4
|\ \ \
| * | | Update deprecation text for Session propertiesBrant Knudson2015-08-291-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The deprecation text should say when the property was deprecated and when we expect to remove it. bp deprecations Change-Id: I9f1af56d03f0251a7cf3f4a4130928bb0780aece
* | | | Merge "Proper deprecation for httpclient.USER_AGENT"Jenkins2015-09-021-2/+6
|\ \ \ \ | |/ / /
| * | | Proper deprecation for httpclient.USER_AGENTBrant Knudson2015-08-291-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | httpclient's USER_AGENT constant wasn't properly deprecated since the deprecation was only a comment. Proper deprecation requires use of warnings/debtcollector and documentation, but since this is a module symbol there's no way to put out a warning, so it's just documentation in this case. bp deprecations Change-Id: I02c77c690a31eea40935d2756748382abec86867
* | | | Merge "Deprecate create HTTPClient without session"Jenkins2015-09-025-35/+93
|\ \ \ \ | |/ / /
| * | | Deprecate create HTTPClient without sessionBrant Knudson2015-08-295-35/+93
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | The comments indicated that creating a HTTPClient without a session is deprecated, but there was no warning generated. bp deprecations Change-Id: I44796cbff95a7bbdd6e7a58e5cfb8360bdae5477
* | | Updated from global requirementsOpenStack Proposal Bot2015-08-311-3/+3
|/ / | | | | | | Change-Id: I12f49ee292e9e18a59a7cd8e4c78d0b4773897ed
* | Merge "Fix Accept header in SAML2 requests"Jenkins2015-08-261-1/+1
|\ \
| * | Fix Accept header in SAML2 requestsJamie Lennox2015-08-261-1/+1
| |/ | | | | | | | | | | | | | | | | The ; separator allows providing parameters to a type not separating type options. This means that in strict type checks like those performed by mod_auth_mellon the check for accept type fails. Change-Id: Ieeaa74b304921daef68497fec77cc6629ab2f0a2 Closes-Bug: #1488722
* | Merge "Proper deprecation for UserManager project argument"Jenkins2015-08-262-13/+22
|\ \ | |/ |/|
| * Proper deprecation for UserManager project argumentBrant Knudson2015-08-132-13/+22
| | | | | | | | | | | | | | | | | | | | UserManager's project argument wasn't properly deprecated since the deprecation was logged. Proper deprecation requires use of warnings/debtcollector and documentation. bp deprecations Change-Id: Idebce2e9781f6f92be402e9441f2116b63b4f832
* | Merge "Proper deprecation for CredentialManager data argument"Jenkins2015-08-262-4/+11
|\ \ | |/
| * Proper deprecation for CredentialManager data argumentBrant Knudson2015-08-132-4/+11
| | | | | | | | | | | | | | | | | | | | | | CredentialManager's data argument wasn't properly deprecated since the deprecation was only mentioned in the docstring. Proper deprecation requires use of warnings/debtcollector and documentation. bp deprecations Change-Id: Ibdb4bda622119eec963ce5b57673dc01ff279b0e
* | Merge "Deprecate create v3 Client without session"Jenkins2015-08-252-3/+20
|\ \ | |/
| * Deprecate create v3 Client without sessionBrant Knudson2015-08-132-3/+20
| | | | | | | | | | | | | | | | | | There was a comment to deprecate creating a v3 Client without a session. bp deprecations Change-Id: Ifc3fa9ffef12554646ca80f04527de757df3aa95
* | Merge "Deprecate create v2_0 Client without session"Jenkins2015-08-254-39/+71
|\ \ | |/
| * Deprecate create v2_0 Client without sessionBrant Knudson2015-08-134-39/+71
| | | | | | | | | | | | | | | | | | There was a comment to deprecate creating a v2_0 Client without a session. bp deprecations Change-Id: I71ff64754c8f90d184615eeec558718c11a1794a
* | Merge "Proper deprecation for Session.get_token()"Jenkins2015-08-257-15/+32
|\ \ | |/
| * Proper deprecation for Session.get_token()Brant Knudson2015-08-137-15/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | Session.get_token() wasn't properly deprecated since the deprecation was only mentioned in the docstring. Proper deprecation requires use of warnings/debtcollector and documentation. Also, changed a test to use the non-deprecated function instead where the test wasn't checking that the deprecated function worked. bp deprecations Change-Id: I3d421b35554d58476281e037f90ab9b48e82730a
* | Merge "Deprecate use of cert and key"Jenkins2015-08-252-9/+12
|\ \ | |/
| * Deprecate use of cert and keyBrant Knudson2015-08-132-9/+12
| | | | | | | | | | | | | | | | | | | | | | There was a comment to deprecate creating a Session with cert and key rather than a tuple to cert. Also, fixed places where the deprecated usage was being used. bp deprecations Change-Id: I3596635bbc5611dd002a8beb063540a8c284c192
* | Merge "Proper deprecation for Session.construct()"Jenkins2015-08-255-8/+22
|\ \ | |/
| * Proper deprecation for Session.construct()Brant Knudson2015-08-135-8/+22
| | | | | | | | | | | | | | | | | | | | Session.construct() wasn't properly deprecated since the deprecation was only mentioned in the docstring. Proper deprecation requires use of warnings/debtcollector and documentation. bp deprecations Change-Id: Ieff238aff9d39cfbbb80381b2392c33d0359acb3
* | Merge "Deprecate ServiceCatalog.get_urls() with no attr"Jenkins2015-08-251-4/+7
|\ \ | |/
| * Deprecate ServiceCatalog.get_urls() with no attrBrant Knudson2015-08-131-4/+7
| | | | | | | | | | | | | | | | | | There was a TODO to deprecate calling ServiceCatalog.get_urls() with an attr but no filter_value. bp deprecations Change-Id: Idd97ce6920d63e1abb4f10ba4965035ba40f0155
* | Updated from global requirementsOpenStack Proposal Bot2015-08-201-1/+1
| | | | | | | | Change-Id: I10f0c5fe2e9ae8dadda9de5b8f1c63a89424fe36
* | Merge "Deprecate ServiceCatalog(region_name)"Jenkins2015-08-205-11/+61
|\ \ | |/