- 19 Apr, 2019 1 commit
-
-
OpenDev Sysadmins authored
This commit was bulk generated and pushed by the OpenDev sysadmins as a part of the Git hosting and code review systems migration detailed in these mailing list posts: http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html Attempts have been made to correct repository namespaces and hostnames based on simple pattern matching, but it's possible some were updated incorrectly or missed entirely. Please reach out to us via the contact information listed at https://opendev.org/ with any questions you may have.
-
- 27 Aug, 2018 1 commit
-
-
Zuul authored
-
- 24 Aug, 2018 1 commit
-
-
qingszhao authored
This is a mechanically generated patch to complete step 1 of moving the zuul job settings out of project-config and into each project repository. Because there will be a separate patch on each branch, the branch specifiers for branch-specific jobs have been removed. Because this patch is generated by a script, there may be some cosmetic changes to the layout of the YAML file(s) as the contents are normalized. See the python3-first goal document for details: https://governance.openstack.org/tc/goals/stein/python3-first.html Change-Id: I5cdecba04be96b18503ea1b31fd541d2fd2374d7 Story: #2002586 Task: #24322
-
- 03 Aug, 2018 1 commit
-
-
Doug Hellmann authored
This is a mechanically generated patch to complete step 1 of moving the zuul job settings out of project-config and into each project repository. Because there will be a separate patch on each branch, the branch specifiers for branch-specific jobs have been removed. See the python3-first goal document for details: https://governance.openstack.org/tc/goals/stein/python3-first.html Change-Id: Ib7484ed77d0ed1971c698281fddd6381657877c5 Story: #2003250
-
- 03 May, 2018 1 commit
-
-
eeldill authored
build-openstack-sphinx-docs jobs fail on stable branches due to the new pip version 10 introduces some previously Warning as Error: in case of calling "pip install" without any package name, the command fails. tox_install.sh is called during docs job without any package passed to pip. Change-Id: I65f97f063c7d4460f537d0e85ee117aa629392ca
-
- 05 Sep, 2017 1 commit
-
-
Ihar Hrachyshka authored
Currently, to_primitive tries to iterate through all addresses in the network, because the type doesn't have a special handling that would short curcuit it, but also has __iter__. This may be detrimental to performance, up to the point of node crash due to memory exhaustion if the passed network range is too large (think of 0.0.0.0/0 or even 2001::/64). This behavior also makes it impossible to restore the original data format (CIDR). This patch short curcuits the iteration by handling the IPNetwork type as a special case, same as we do for IPAddress. Change-Id: I6aecd2d057d282a655ff9e4918c164253142b188 Closes-Bug: #1698355 (cherry picked from commit 38ac21b5)
-
- 20 Jan, 2017 2 commits
-
-
OpenStack Release Bot authored
Change-Id: Ib837178f8ba97df10803de9663b5b02b9c1126ee
-
OpenStack Release Bot authored
Change-Id: Ifbd2dff5bf6809226729573a8d37742faacf34e3
-
- 10 Jan, 2017 1 commit
-
-
Joshua Harlow authored
The current change made in de68f08d37 breaks cinder and other projects that were expecting a TypeError, so for now and to keep those projects operating translate the py3.x exception from binascii into a type error to prefer consistency with existing code. Change-Id: I4575ea3dad51be9bb2278eb0bfa31cef54c300d5
-
- 02 Jan, 2017 1 commit
-
-
Jenkins authored
-
- 22 Dec, 2016 1 commit
-
-
Jenkins authored
-
- 20 Dec, 2016 1 commit
-
-
Tony Breeds authored
Adding constraints support to libraries is slightly more complex than services as the libraries themselves are listed in upper-constraints.txt which leads to errors that you can't install a specific version and a constrained version. This change adds constraints support by also adding a helper script to edit the constraints to remove oslo.serialization. Change-Id: If02798738dd0293ede4e3d6939e6d5cf6b0182ec
-
- 14 Dec, 2016 1 commit
-
-
Stephen Finucane authored
In Python 2, the 'b64decode' function calls the 'binascii.a2b_base64' function but catches any 'binascii.Error' exceptions raised and raises a TypeError instead [1]. In Python 3, a 'binascii.Error' error is raised instead [2]. Rather than forcing users to handle two types of exception, we can allow them to catch only the 'bisascii.Error'. Python 2 provides a function that does just this - 'decodestring' - which we can use. Make it so. [1] https://github.com/python/cpython/blob/2.7/Lib/base64.py#L78 [2] https://github.com/python/cpython/blob/3.5/Lib/base64.py#L87 [3] https://github.com/python/cpython/blob/2.7/Lib/base64.py#L326 Change-Id: I72c6de71b174181292427128d20e03756f85fb97
-
- 12 Dec, 2016 1 commit
-
-
gecong1973 authored
1.As mentioned in [1], we should avoid using six.iteritems to achieve iterators. We can use dict.items instead, as it will return iterators in PY3 as well. And dict.items/keys will more readable. 2.In py2, the performance about list should be negligible, see the link [2]. [1] https://wiki.openstack.org/wiki/Python3 [2] http://lists.openstack.org/pipermail/openstack-dev/2015-June/066391.html Change-Id: Ifbe7929580ec61a2cd50232794c0cbd0cbf37edc
-
- 05 Dec, 2016 1 commit
-
-
Luong Anh Tuan authored
Openstack common has a wrapper for generating uuids.We should use that function when generating uuids for consistency. Change-Id: Ifb450c91a1b91f016b4f9ad3a4367e8117b89a0d Closes-Bug: #1082248
-
- 25 Nov, 2016 1 commit
-
-
Flavio Percoco authored
This patch adds the team's and repository's badges to the README file. The motivation behind this is to communicate the project status and features at first glance. For more information about this effort, please read this email thread: http://lists.openstack.org/pipermail/openstack-dev/2016-October/105562.html To see an example of how this would look like check: b'https://gist.github.com/4d5b24484f965cc0a7ad252d9ffff20a\n' Change-Id: I5453d4039c48a263a9fd373ea93cda82a46d0ee7
-
- 09 Nov, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: I3fe045fff363c96e711ebb3f991e4646c70c338d
-
- 06 Nov, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: Ibc6f1ac2b545f68866666c891adc84cef1366ba5
-
- 03 Nov, 2016 1 commit
-
-
ChangBo Guo(gcb) authored
The release management team have indicated this is their preferred way to collect release notes in future. Closes-Bug: #1634356 Change-Id: Ia8a357ce4a42176b9bc46a715aef7158310c2cf0
-
- 22 Oct, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: Idec21f411f8cfc5df4351839b842e709558e6123
-
- 29 Sep, 2016 2 commits
-
-
Jenkins authored
-
John L. Villalovos authored
The API Documentation page had a title of "base64". Make it "API Documentation" Change-Id: I309374560487762a8a539a70a6478f1123bd3a5c
-
- 28 Sep, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: Ie6f11162ad19399cffc525080dce51b72d41d784
-
- 20 Sep, 2016 1 commit
-
-
avnish authored
Change-Id: I4fc6a5af613e81fa553d7a176e1ec51b7945d427
-
- 04 Aug, 2016 1 commit
-
-
Jenkins authored
-
- 03 Aug, 2016 1 commit
-
-
xianming.mao authored
In hacking >=0.10.0,there is not H803.We should remove it. Change-Id: I4738aba1d02ad1404944a326f1ce5538dd1edc7a
-
- 01 Aug, 2016 1 commit
-
-
Gevorg Davoian authored
Change-Id: I30e7c7b7cb2356a39bc51eb8c93f14c8881a38c2 Closes-Bug: #1599387
-
- 29 Jul, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: Ib76f363aba1eaf059799c4b954ddf296269ff390
-
- 23 Jul, 2016 1 commit
-
-
yanheven authored
Many assertEqual sentences don't follow assertEqual(expected, actual), These misplaces have 2 impacts: 1, giving confusing messages when some tests failed. 2, mislead other developers, new test modules may follow these wrong pattern. This patch fix all of them. Change-Id: Ice3148685b81bf906672b91159fbb29bd618abb0 Closes-Bug: #1604213
-
- 12 Jul, 2016 1 commit
-
-
ChangBo Guo(gcb) authored
Now that there is a passing gate job, we can claim support for Python 3.5 in the classifier. This patch also adds the convenience py35 venv. Change-Id: I6f67834cc0f6f204aba2457f71e788d1fafd2640
-
- 09 Jul, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: I4e8b08864afacea4261d48e403ce159faae36da8
-
- 30 Jun, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: I6ffc7b5b8ba947ce08c5e2484a4536b7719d9581
-
- 21 Jun, 2016 1 commit
-
-
Edan David authored
There is a performance impact when using dict() instead of {} in CPython (up to 6 times longer). Considering the to_primitive function is recursive this can have quite an effect. Measuring: $ python2.7 -m timeit -n 1000000 -r 5 -v 'dict()' raw times: 0.24 0.24 0.24 0.239 0.24 1000000 loops, best of 5: 0.239 usec per loop $ python2.7 -m timeit -n 1000000 -r 5 -v '{}' raw times: 0.0417 0.0413 0.0407 0.0411 0.042 1000000 loops, best of 5: 0.0407 usec per loop For more information: https://doughellmann.com/blog/2012/11/12/ the-performance-impact-of-using-dict-instead-of-in-cpython-2-7-2/ Change-Id: Ia0b5892773a19cbabe40313a3bc788580a943f53
-
- 09 Jun, 2016 2 commits
-
-
OpenStack Proposal Bot authored
Change-Id: I177163b1f2739abb83b88c561da8c92701c860cc
-
Jenkins authored
-
- 08 Jun, 2016 1 commit
-
-
Gevorg Davoian authored
There are some differences in the behaviour of json and msgpack serializers. Msgpack throws TypeError when it doesn't know how to handle an object. Json throws ValueError instead. Regarding the fact that serialization should be configurable (in particular, serializers should have similar behaviour; right now transition from json to msgpack leads to errors and fails) this patch proposes to raise ValueError instead of TypeError on failures so that libraries already using jsonutils would be able to also work with msgpackutils. Change-Id: I3d21b7d136e5a426a3c4a70a953c82ddcd6ef5af
-
- 07 Jun, 2016 1 commit
-
-
Jim Baker authored
Fixes jsonutils.to_primitive so that it can serialize ipaddress objects, as used by Python 3 or through the backport in global-requirements.txt. Current support for netaddr is maintained. Change-Id: I6aa1ecd5be754f61cdda4e47bc0e0180e232b366 Closes-bug: 1590076
-
- 01 Jun, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: Iecdb59fdb7059e74c59e9414b4516cccbb96b828
-
- 31 May, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: Idfafa1e4760f2b2e3bd2c6f9c6d5f36278e07e06
-
- 26 May, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: I6ed13473585c1968f491fc113866d193676a2aef
-