- 25 Apr, 2019 1 commit
-
-
Pavlo Shchelokovskyy authored
oslo.cache uses a simple curl command in its tox_install.sh to fetch the upper-constraints, and curl does not follow redirects that are now in place due to move to opendev.org. This breaks running tox-based tests w/o overriding the UPPER_CONSTRAINTS_FILE which upstream CI does, for example running tox locally. Change-Id: Ifcb555c8f4ccb813b48c613c79dceb4bf23318eb (cherry picked from commit 6eceb160eaaebbc6ea04768f62876738aa61c2d1)
-
- 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.
-
- 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: I61ac7209f33f09a715566272d11b672dc3638061 Story: #2003250
-
- 03 May, 2018 1 commit
-
-
eeldill authored
build-openstack-sphinx-docs jobs fail on all 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: I400d4acf93ab634683cd9c4b05db7c79a51810be
-
- 07 Feb, 2017 1 commit
-
-
Jenkins authored
-
- 29 Jan, 2017 1 commit
-
-
Joshua Harlow authored
We have moved properties that no longer make directly accessing the __dict__ a good practice to go forward with (because those properties redirect to other members) so prefer to go through the correct conversion method to get at the dict that represents a context. Change-Id: I6fbf2192f477f62b1843321d2ec2147a3536a888 (cherry picked from commit 1640564d)
-
- 20 Jan, 2017 2 commits
-
-
OpenStack Release Bot authored
Change-Id: Ibaedae72f2fae943f0e3e802b6bb5c86b7d177c3
-
OpenStack Release Bot authored
Change-Id: I9f1d19d638d93ffb15917915ba6abe6b84e4baad
-
- 22 Dec, 2016 1 commit
-
-
JingLiu authored
As ChangBo Guo(gcb) said in review https://review.openstack.org/#/c/359786, 'hasattr' has less cost than 'vars'. Repair it in another place. Change-Id: Ib13767be8377f536a9d82e54a6e7af8b6a8a1604
-
- 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.log. Change-Id: Ib6001210350743827eae4f5306464e68e057d4c6
-
- 05 Dec, 2016 1 commit
-
-
Akash Gangil authored
In python3, str is already represents unicode data. The current code called oslo.utils safe_encode irrespective of incoming message encoding and encoded it to 'utf-8', however that resolves to a byte string. Since the syslog module expects a message of type unicode[1]. We don't need to encode if python3 is being used, since the string representation is sequence of unicode codepoints by default. [1] https://hg.python.org/cpython/file/tip/Modules/syslogmodule.c#l162 Change-Id: Id40854d6b762b2d639afd7168ddb3a1e728d13d7
-
- 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/2f1deaf5f6d607a06104393febde34d4\n' Change-Id: I2744efb5d06f1556cbb81775186bc95c11373326
-
- 09 Nov, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: Ic1ac449aae19680f9def0a76c514464824655137
-
- 06 Nov, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: Iee92a32eb063da126eddfddb3eafcd8ef8b69e20
-
- 02 Nov, 2016 2 commits
-
-
Jenkins authored
-
OpenStack Proposal Bot authored
Change-Id: I4e69a36dc53e7664b60d4d4b54d6a387169ff5ca
-
- 23 Oct, 2016 1 commit
-
-
OpenStack Proposal Bot authored
For more information about this automatic import see: https://wiki.openstack.org/wiki/Translations/Infrastructure Change-Id: I1e426d5cfbe69568f8281e4149a058ab9ce2e737
-
- 13 Oct, 2016 1 commit
-
-
Jenkins authored
-
- 12 Oct, 2016 1 commit
-
-
Tony Xu authored
Use assertIn(A, B) instead of assertTrue(A in B) TrivialFix Change-Id: Ia186e0010e3b7f5ea1103cde990bd8a8be695361
-
- 11 Oct, 2016 1 commit
-
-
Jenkins authored
-
- 10 Oct, 2016 1 commit
-
-
Jenkins authored
-
- 07 Oct, 2016 2 commits
-
-
gecong1973 authored
Some of tests use different method of assertTrue(isinstance(A, B)) or assertEqual(type(A), B). The correct way is to use assertIsInstance(A, B) provided by testtools Change-Id: I85a3ffe7fb29b0c5cd0d298d314172440feae96e
-
Joshua Harlow authored
It would save a lot of space to only write JSON logs, rather than also write formatted logs. This utility turns the former into the latter so we can do this without removing the ability of a sysadmin to read logs in a sensible format. You can either provide a filename or pipe via stdin. `tail -f` works as stdin. Each record must occupy precisely one line. Change-Id: I334e1e52d442f82bf68da9e581ce44bc3465208b Co-Authored-By:Alexis Lee <lxsli@hpe.com>
-
- 06 Oct, 2016 1 commit
-
-
Andreas Jaeger authored
Releasenote translation publishing is being prepared. 'locale_dirs' needs to be defined in conf.py to generate translated version of the release notes. Note that this repository might not get translated release notes - or no translations at all - but we add the entry here nevertheless to prepare for it. Change-Id: I59db2bf536c766b4708530d41804acfbd4269483
-
- 30 Sep, 2016 1 commit
-
-
Steve Martinelli authored
The P and Q releases have been named [1], add them to versionutils. [1] http://lists.openstack.org/pipermail/openstack-dev/2016-August/101891.html Change-Id: I0f386048cdd63fd757c6833d5fb4c1d1441c9d7a
-
- 28 Sep, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: I559ff96cb26cc30185c57b4d88edcf9b59b2c3af
-
- 27 Sep, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: I1562085b85a021be3c98879923e872fdc76e7af8
-
- 20 Sep, 2016 1 commit
-
-
avnish authored
Change-Id: Iaabcb82cf9d8340e82fc0ea94ba5cecca1f65520
-
- 19 Sep, 2016 1 commit
-
-
Victor Stinner authored
* Add configuration options to enable rate limiting: - rate_limit_interval - rate_limit_burst - rate_limit_except_level * Add oslo_log.rate_limit submodule * Add public functins: - install_filter(burst, interval, except_level) - uninstall_filter() * Add unit tests * Add a new dependency, monotonic, to get a monotonic clock Default: rate limiting is disabled and logs at CRITICAL level are not rate limited. DocImpact Change-Id: Ic58dafceefde1b109721a58631c223522bf4cc9c
-
- 14 Sep, 2016 1 commit
-
-
Masaki Matsushita authored
This change implements FluentFormatter, a formatter for fluentd. It enables oslo_log to output logs to fluentd directly. FluentFormatter expects it will be used by fluent.handler.FluentHandler. DocImpact Implements: blueprint fluent-formatter Change-Id: I67be5079f9370e93e5e3d4c715d2b8011154a2ce
-
- 12 Sep, 2016 1 commit
-
-
Jenkins authored
-
- 10 Sep, 2016 1 commit
-
-
Jenkins authored
-
- 09 Sep, 2016 1 commit
-
-
Jenkins authored
-
- 08 Sep, 2016 1 commit
-
-
Alexis Lee authored
The code is designed to only mutate if the mtime of log_config_append changes. The tests sometimes go too fast and the mtime doesn't change. Fix this by always resetting old_time. Change-Id: I84cdfece2969069c138f46201d84928f26fe4913
-
- 07 Sep, 2016 1 commit
-
-
Doug Hellmann authored
In order to support automatically updating the release notes when we create stable branches, we want the pages to be in a standard order. This patch updates the order to be reverse chronological, so the most recent notes appear at the top. Change-Id: Ib364dcc8eb31275a31c83b68d7914263b183e393 Signed-off-by:Doug Hellmann <doug@doughellmann.com>
-
- 06 Sep, 2016 1 commit
-
-
Kirill Zaitsev authored
Currently constraint for six is >=1.9, so it's time to solve the TODO point over functools.wraps and make behaviour consistent on py2/py3 Change-Id: I23996a4aec3561c7b0f6fec00a60f8c16b2e22a6
-
- 30 Aug, 2016 1 commit
-
-
Doug Hellmann authored
Change-Id: I4d7247fbb93ae32bf5b6c6a620ff1ce9dd6d736a
-
- 26 Aug, 2016 1 commit
-
-
Jenkins authored
-
- 24 Aug, 2016 1 commit
-
-
OpenStack Proposal Bot authored
Change-Id: I26d7caa4247046e8978f34ae816dcf44b507ddf9
-
- 23 Aug, 2016 1 commit
-
-
Atsushi SAKAI authored
osli => oslo respository => repository demostrates => demonstrates Change-Id: I76badc9f5852fafaff627770b11c5948ae1cffd7
-