- 02 Feb, 2021 2 commits
-
-
Sofia Enriquez authored
Currently, using Cinder's backup service with RBD the backup-create operation gets stuck when logging ('use_json=True' must be set in the config file). The oslo.log JSONFormatter gets stuck when passing an RBDVolumeIOWrapper from os-brick. This happens via os-brick's utils.trace() method which passes a connector containing {'path': RBDVolumeIOWrapper}. The oslo.log JSONFormatter format() method calls oslo_serialization's jsonutils.to_primitive and passes in this RBDVolumeIOWrapper object. Therefore the to_primitive method eventually calls RBDVolumeIOWrapper.read(). In order to fix this the current path avoids mapping io.IOBase objects and fallback the wrapper RBD volume object. Co-authored-by:Eric Harney <eharney@redhat.com> Closes-Bug: #1908607 Change-Id: I3c416e855cb5f0dc32d14b2749ba92aba8964574 (cherry picked from commit 02037330)
-
Hervé Beraud authored
We facing errors related to the new pip resolver, this topic was discussed on the ML and QA team proposed to to test lower-constraints [1]. I propose to drop this test because the complexity and recurring pain needed to maintain that now exceeds the benefits provided by this mechanismes. [1] http://lists.openstack.org/pipermail/openstack-discuss/2020-December/019390.html Change-Id: Ie53b809ab031525958b58730a12cb37d0bdf5c82 (cherry picked from commit 3799d180)
-
- 11 Sep, 2020 2 commits
-
-
OpenStack Release Bot authored
Update the URL to the upper-constraints file to point to the redirect rule on releases.openstack.org so that anyone working on this branch will switch to the correct upper-constraints list automatically when the requirements repository branches. Until the requirements repository has as stable/victoria branch, tests will continue to use the upper-constraints list on master. Change-Id: I2b7bf21711ae399d8abdb536d87447fdb23025d4
-
OpenStack Release Bot authored
Change-Id: Ieaea1649fa2ac6902a9551ba7bef058eae581779
-
- 24 Jul, 2020 1 commit
-
-
Moisés Guimarães de Medeiros authored
This patch bumps bandit allowed version to >=1.6.0,<1.7.0 in order to avoid the errors detailed here https://github.com/PyCQA/bandit/pull/393 Change-Id: Ibde98a5e7e021e250b2a35008b677afa658ed47e Signed-off-by:
Moisés Guimarães de Medeiros <moguimar@redhat.com>
-
- 30 Jun, 2020 1 commit
-
-
Zuul authored
-
- 09 Jun, 2020 1 commit
-
-
Daniel Bengtsson authored
Update to the latest version. Change-Id: Iea34ae991caf21d02632e31ec8624170c3d1b771
-
- 08 Jun, 2020 3 commits
-
-
Zuul authored
-
Zuul authored
-
Daniel Bengtsson authored
The pyyaml is now safe by default: https://github.com/yaml/pyyaml/pull/74/files https://access.redhat.com/security/cve/CVE-2017-18342 https://github.com/search?q=oslo.serialization+yamlutils+user%3Aopenstack+language%3APython&type=Code So the yamlutils is now useless. No project in OpenStack used this module. We can remove it. Sem-Ver: api-break Change-Id: If0a98f1e15d83131cb309e02f892372f353fa5da
-
- 04 Jun, 2020 1 commit
-
-
melissaml authored
New theme of docs respects pygments_style. more info: http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014971.html Change-Id: Ic49f4d682e35ca74443b2b288fbcde24bfdb7b42
-
- 03 Jun, 2020 1 commit
-
-
Zuul authored
-
- 02 Jun, 2020 1 commit
-
-
Hervé Beraud authored
The __future__ module [1] was used in this context to ensure compatibility between python 2 and python 3. We previously dropped the support of python 2.7 [2] and now we only support python 3 so we don't need to continue to use this module and the imports listed below. Imports commonly used and their related PEPs: - `division` is related to PEP 238 [3] - `print_function` is related to PEP 3105 [4] - `unicode_literals` is related to PEP 3112 [5] - `with_statement` is related to PEP 343 [6] - `absolute_import` is related to PEP 328 [7] [1] https://docs.python.org/3/library/__future__.html [2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html [3] https://www.python.org/dev/peps/pep-0238 [4] https://www.python.org/dev/peps/pep-3105 [5] https://www.python.org/dev/peps/pep-3112 [6] https://www.python.org/dev/peps/pep-0343 [7] https://www.python.org/dev/peps/pep-0328 Change-Id: I973fc9523a32651fa016a6e09fdffc4540aacd87
-
- 26 May, 2020 1 commit
-
-
Zuul authored
-
- 22 May, 2020 1 commit
-
-
Zuul authored
-
- 18 May, 2020 1 commit
-
-
Andreas Jaeger authored
Switch to openstackdocstheme 2.2.0 and reno 3.1.0 versions. Using these versions will allow especially: * Linking from HTML to PDF document * Allow parallel building of documents * Fix some rendering problems Update Sphinx version as well. openstackdocstheme renames some variables, so follow the renames before the next release removes them. A couple of variables are also not needed anymore, remove them. Set openstackdocs_auto_name to use 'project' as name. Depends-On: https://review.opendev.org/728938 Change-Id: If90af1920749efd1b314884a4b366d6d2c939521
-
- 15 May, 2020 2 commits
- 04 May, 2020 1 commit
-
-
Hervé Beraud authored
Related to: - https://review.opendev.org/#/c/723044/ - https://governance.openstack.org/tc/goals/selected/ussuri/project-ptl-and-contrib-docs.html Change-Id: I63b04667a3bf6371e27e3b66b7f2e83910527cc4
-
- 27 Apr, 2020 1 commit
-
-
Zuul authored
-
- 24 Apr, 2020 3 commits
-
-
Sean McGinnis authored
Python 3.8 is now our highest level supported python runtime. This updates the default tox target environments to swap out py37 for py38 to make sure local development testing is covering this version. This does not impact zuul jobs in any way, nor prevent local tests against py37. It just changes the default if none is explicitly provided. Change-Id: I72444ae863915b98182a6badeef94ea9109036ab Signed-off-by:Sean McGinnis <sean.mcginnis@gmail.com>
-
Sean McGinnis authored
Now that we are running the Victoria tests that include a voting py38, we can now add the Python 3.8 metadata to the package information to reflect that support. Change-Id: I3dea2c56eae81c42173cbcdfb349172b2ad720d9 Signed-off-by:Sean McGinnis <sean.mcginnis@gmail.com>
-
Hervé Beraud authored
Also uniformize titles to match a common format used on oslo's projects. Change-Id: I687c647f5b978d87e3a9aa3d788d59d7bce26a21
-
- 14 Apr, 2020 2 commits
-
-
OpenStack Release Bot authored
This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for victoria. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: Ia59456ec6e5f1302222b85b34c30da676f54015b
-
OpenStack Release Bot authored
Add file to the reno documentation build to show release notes for stable/ussuri. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/ussuri. Change-Id: I99e8ee2472cc5823605caae10ec36bcb15a978f0 Sem-Ver: feature
-
- 02 Apr, 2020 1 commit
-
-
Andreas Jaeger authored
The repo is Python 3 now, so update hacking to version 3.0 which supports Python 3. Fix problems found. Remove hacking and friends from lower-constraints, they are not needed for installation. Change-Id: I94aabb5b1ef43e8f0a5850620afce91ae0755e97
-
- 24 Mar, 2020 1 commit
-
-
Zuul authored
-
- 23 Mar, 2020 1 commit
-
-
Zuul authored
-
- 13 Mar, 2020 1 commit
-
-
Sean McGinnis authored
Now that we no longer support py27, we can use the standard library unittest.mock module instead of the third party mock lib. Change-Id: I5b6f25b1154b9d655843615ca8402fe4f73e923f Signed-off-by:Sean McGinnis <sean.mcginnis@gmail.com>
-
- 06 Mar, 2020 1 commit
-
-
Ben Nemec authored
Now that we only support Python 3 we don't need logic to handle Python 2. Change-Id: I33747d25bc4c67ee13654ed132edf7413371c1dc
-
- 02 Mar, 2020 1 commit
-
-
Stephen Finucane authored
Another one bites the dust. Change-Id: I1fadcad8219322b569eeecd81e454a44641e8b1e Signed-off-by:Stephen Finucane <sfinucan@redhat.com>
-
- 27 Feb, 2020 1 commit
-
-
Stephen Finucane authored
We don't need to worry about versions of Mox released in 2011 any more https://bugs.launchpad.net/nova/+bug/852095 Change-Id: Ifd2228071c70e516f11eefde29932813b7cf6a97 Signed-off-by:
Stephen Finucane <sfinucan@redhat.com>
-
- 21 Feb, 2020 1 commit
-
-
Hervé Beraud authored
We missed to inform customers by adding release note, these changes do that. Change-Id: I834b2ebba94d5dfca121ed06ff5ba42336d1b97c
-
- 17 Feb, 2020 1 commit
-
-
Zuul authored
-
- 14 Feb, 2020 1 commit
-
-
Daniel Bengtsson authored
The pyyaml is now safe by default: https://github.com/yaml/pyyaml/pull/74/files https://access.redhat.com/security/cve/CVE-2017-18342 So the yamlutils is now useless. We can depracated it and then remove it. Change-Id: I4ecb34eee942c714d09d2258db80f5b8d61dec89
-
- 13 Feb, 2020 2 commits
-
-
Zuul authored
-
Daniel Bengtsson authored
Update the minversion parameter to use the python -m pip to install python packages: https://tox.readthedocs.io/en/latest/changelog.html#id185 It's recommend to use this. Change-Id: I1560635d3d76edf5ca4c426e7e13b228ac4f8c63
-
- 10 Feb, 2020 1 commit
-
-
Hervé Beraud authored
Change-Id: I04ff1d6b95aa4672cf560e4777295626bb651440
-
- 06 Feb, 2020 1 commit
-
-
Hervé Beraud authored
Change-Id: I340048e6e3f1050c8f02be6681a3e741c82fda07
-
- 03 Feb, 2020 1 commit
-
-
Hervé Beraud authored
OpenStack is dropping the py2.7 support in Ussuri cycle. Complete discussion & schedule can be found in - http://lists.openstack.org/pipermail/openstack-discuss/2019-October/010142.html - https://etherpad.openstack.org/p/drop-python2-support Ussuri Communtiy-wide goal: https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html Change-Id: Icc43428c885853007a6ee9fc4acaf079f6349619
-