- 01 Mar, 2022 1 commit
-
-
Takashi Kajinami authored
The tenant argument of RequestContext is longer available since oslo.context 4.0.0. This change removes usage of the deprecated argument in unit tests to prepare for version bump. Change-Id: I0493b5fbe09d183e57a207c1dda0b2ee7a4e1b34
-
- 11 Feb, 2022 1 commit
-
-
rabi authored
Use retry_state parameter that contains all information about current retry invocation in the prepare_attempt callback. Change-Id: Ib47b6335b591850965132448befb7b3dbe31984a Task: 44471
-
- 08 Feb, 2022 1 commit
-
-
Takashi Kajinami authored
Python 2 support was removed during Ussuri cycle. This change adds the classifier to clearly state that only Python 3 is supported. Change-Id: Icaa8acc04019b67628e84b1fa252e3731d526f08
-
- 17 Jan, 2022 1 commit
-
-
Takashi Kajinami authored
Since croniter 1.2.0, day=0 is no longer accepted as a valid value[1]. Because of this change, some unit tests are failing with the following error. Invalid CRON expression: [* * 0 * *] is not acceptable, out of range This change updates the pattern used in unit tests so that the value is accepted by the latest croniter. [1] https://github.com/kiorky/croniter/commit/17953c8fa73d09c15b1a8af6b3f27245856f3cb1 Change-Id: Ib9ee765e89716583b8f28cc9aafd9cb4e8e8e1cb
-
- 12 Jan, 2022 1 commit
-
-
bshephar authored
In support of the OSC migration, we need to bump the lower-constraint for the openstacksdk to allow for feature parity. Change-Id: Ide69f84a76f06814cf74b73b57729f23dea1062b
-
- 24 Dec, 2021 2 commits
- 14 Dec, 2021 1 commit
-
-
Ghanshyam Mann authored
Yoga testing runtime[1] has been updated to add py39 testing as voting. Unit tests update are handled by the job template change in openstack-zuul-job - https://review.opendev.org/c/openstack/openstack-zuul-jobs/+/820286 this commit updates the classifier in setup.cfg file. [1] https://governance.openstack.org/tc/reference/runtimes/yoga.html Change-Id: I573f6f4f4a9257a4c9c25a9d61a9ea29267377d1
-
- 13 Dec, 2021 1 commit
-
-
Corey Bryant authored
The messages returned are slightly different when run with Python 3.10. Story: 2009741 Task: 44177 Change-Id: I26917aefdf43bf3f9008891d2e66aef9b94f58b5
-
- 07 Dec, 2021 1 commit
-
-
Zuul authored
-
- 03 Dec, 2021 1 commit
-
-
rabi authored
Unfortunately few projects like mistral/zaqar have little participation and are kind of unmaintained atm, we should stop testing them in CI. Recently zaqar is broken with latest pymongo (4.0). Change-Id: I33d3aceacf03ad1baf29301885a8e88b17b7e476
-
- 26 Nov, 2021 1 commit
-
-
rabi authored
This is broken after pyparsing was bumped to 3.0.6. With python-aodhclient (kind of unmaintained it seems) CI broken, we should skip the test temporarily until [1] is merged and we've a client released with the change. [1] https://review.opendev.org/c/openstack/python-aodhclient/+/819393 Change-Id: Ib4a244087038f698eabbf2180eff3efce3a3c767
-
- 22 Nov, 2021 1 commit
-
-
Zuul authored
-
- 19 Nov, 2021 1 commit
-
-
rabi authored
This devstack plugin seems broken with devstack secure rbac changes to use OS_CLOUD. Change-Id: I9f0d3d97e4cc7d5ed6858eca9c042fedb14139d1
-
- 17 Nov, 2021 2 commits
- 12 Nov, 2021 1 commit
-
-
Ian Wienand authored
OpenDev infra only keep around the latest two Fedora releases in their mirrors. Probe for the image from the local test mirror, but if not found, fallback to upstream. This will be much less reliable, but can avoid gate breakage until new images can be used. Also, use endpoint_type when creating keystoneclient Keystone admin endpoint has been removed from devstack with[1]. This would use the public endpoint by default. Change-Id: I96ab14871ee8c5d5b83cc0cd4abc840ef0218ca8
-
- 09 Nov, 2021 1 commit
-
-
Erik Panter authored
When sorting resource candidates in `_get_best_existing_rsrc_db`, resources with the same score are sorted by `updated_at`, which can be `None`. If that is the case, use `created_at` instead. Task: 43815 Story: 2009653 Change-Id: Ic0265fcf7ceb811803cdebaa8932fe80dc59a627
-
- 02 Nov, 2021 1 commit
-
-
OpenStack Proposal Bot authored
For more information about this automatic import see: https://docs.openstack.org/i18n/latest/reviewing-translation-import.html Change-Id: Ie693d500eb35af94e13069d85516dc42a5f811dd
-
- 01 Nov, 2021 4 commits
-
-
Zuul authored
-
Zuul authored
-
Tobias Urdin authored
If there is underlying issues in Keystone that causes the create stack project to fail the exception is never caught causing the stack to never enter a failed state with any feedback. See [1] for example. This changes so that we catch all exceptions and set the stack to a failed state. We do not want to return the complete exception since it can contain information about the deployments underlying issue so we instead log the exception. [1] https://paste.opendev.org/show/810161/ Change-Id: If0bc726d8681fff2b45a3b353ae627c86eb298d2
-
rabi authored
load() function requires a loader parameter with PyYAML 6.0. Change-Id: Icf8ae805e53d80cf7be46465326983d2e24ef23a
-
- 18 Oct, 2021 3 commits
- 14 Oct, 2021 1 commit
-
-
Zuul authored
-
- 13 Oct, 2021 1 commit
-
-
Andrii Ostapenko authored
Component is not used in code base and was recently removed from global upper constraints [0] [0] https://review.opendev.org/c/openstack/requirements/+/809975 Change-Id: I1555a3db15c9a560e945c3479b44cd6d3f036d79
-
- 12 Oct, 2021 2 commits
-
-
Zuul authored
-
rabi authored
Nova api has a different signature from microversion 2.64 onwards[1]. Also adds support_status for 'rules' property missed earlier in I8e77f54303298da00cbe719afccb449f10fe387c. [1] https://github.com/openstack/python-novaclient/blob/master/novaclient/v2/server_groups.py#L103-L104 Task: 43168 Change-Id: If7138c71044adadaf7de255a2fac463b57ff3c47
-
- 11 Oct, 2021 2 commits
-
-
Zuul authored
-
Zane Bitter authored
Change-Id: Ic5e6fa80d2a04b1c36087ed8f7f870e414cd5d82
-
- 06 Oct, 2021 1 commit
-
-
OpenStack Proposal Bot authored
For more information about this automatic import see: https://docs.openstack.org/i18n/latest/reviewing-translation-import.html Change-Id: I5af1eb5655899742cabd9df560b3c7413d48fbe7
-
- 05 Oct, 2021 1 commit
-
-
Brendan Shephard authored
The six library was introduced to bridge the gap between Python2 and 3. This is no longer necessary on branches where we are not supporting Python2. Change-Id: I7736373d03c23884158e4a1d41defafb4e2b8a4c
-
- 04 Oct, 2021 2 commits
- 21 Sep, 2021 3 commits
-
-
Balazs Gibizer authored
The timeout calculation of nested resource groups are using seconds but then it passing the value in seconds to the stack resource that is expected it in minutes. This leads to a rapidly increasing timeout value in each nesting levels. This patch converts the seconds to minutes before passing it forward. Story: 2009237 Task: 43372 Change-Id: I3f132d4889723f7b4a3a416779ac5ee7663249b8
-
Balazs Gibizer authored
Add a functional test that reproduces the bug that nested resource group timeout value is increasing rapidly with every nesting level. Story: 2009237 Task: 43373 Change-Id: I8e85434a5fb9cc6d0ef3240c8ae6085f5124174b
-
Zuul authored
-
- 17 Sep, 2021 1 commit
-
-
Zuul authored
-