Allow to disable wsgi socket rotation

Bug #2021550 reported by Hua Zhang
12
This bug affects 2 people
Affects Status Importance Assigned to Milestone
Charm Helpers
New
Undecided
Unassigned
OpenStack Ceilometer Charm
Fix Committed
Undecided
Unassigned
OpenStack Cinder Charm
Fix Committed
Wishlist
Unassigned
OpenStack Dashboard Charm
Fix Committed
Wishlist
Unassigned
OpenStack Glance Charm
Invalid
Wishlist
Unassigned
OpenStack Keystone Charm
Fix Committed
Wishlist
Unassigned
OpenStack Neutron API Charm
Invalid
Wishlist
Unassigned
OpenStack Nova Cloud Controller Charm
Fix Committed
Wishlist
Hua Zhang

Bug Description

The lp bug 1863232 introduces a new config WSGISocketRotation that allow to disable the wsgi socket rotation for apache's mod-wsgi, and this option is disabled in apache by default so the default behavior remains consistent with the previous versions. But for charm, there is no config to set whether WSGISocketRotation is turned on or off. Moreover, sometimes allowing customers to disable rotation can solve HTTP 503 issue mentioned in the lp bug 1863232

But this HTTP 503 issue is quite difficult to reproduce, I have made the following effort, but I still cannot reproduce them so far. I also asked the customer to run the following effort on his production env, it also failed to reproduce the problem.

#eg: on nova-cloud-controller/0, run:
cat <<EOF >http-request
GET / HTTP/1.1
Host: 127.0.0.1
Connection: keep-alive

EOF
for i in {1..1000}; do echo $i; date; (cat http-request; sleep 1; cat http-request; sleep 9) | telnet 127.0.0.1 8754 2>&1 | while read line; do echo "$(date +'%T') == $line"; done >>output.txt; done

We did see HTTP 503 issue in the customer's production env, I cannot request the customer to directly modify WSGISocketRotation=Off in his production env to confirm this can fix the problem. However, I believe that since apache has provided a config to disable rotation, charm should also provide a config to allow customers to disable rotation. So, I propose adding the following config to all charms that include apache wsgi.

1, when disable-wsgi-rotaion=True, set 'WSGISocketRotation Off' in apache2

2, when disable-wsgi-rotaion=False, set 'WSGISocketRotation on' in apache2

The config disable-wsgi-rotaion will be set to False in charm side by default as well, this can avoid all potential regressions. Additionally, this config needs to be introduced to all charms that include apache wsgi, such as: horizon, keystone, glance, nova-cloud-controller, neutron-server, cinder etc

Hua Zhang (zhhuabj)
tags: added: sts
summary: - Allow to disable wsgi socket rotaion
+ Allow to disable wsgi socket rotation
Changed in charm-cinder:
importance: Undecided → Wishlist
status: New → Triaged
Changed in charm-openstack-dashboard:
importance: Undecided → Wishlist
status: New → Triaged
Changed in charm-glance:
importance: Undecided → Wishlist
status: New → Triaged
Changed in charm-keystone:
importance: Undecided → Wishlist
status: New → Triaged
Changed in charm-neutron-api:
importance: Undecided → Wishlist
status: New → Triaged
Changed in charm-nova-cloud-controller:
importance: Undecided → Wishlist
status: New → Triaged
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-nova-cloud-controller (master)
Changed in charm-nova-cloud-controller:
status: Triaged → In Progress
Revision history for this message
Hua Zhang (zhhuabj) wrote :
Changed in charm-nova-cloud-controller:
assignee: nobody → Hua Zhang (zhhuabj)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-cinder (master)
Changed in charm-cinder:
status: Triaged → In Progress
Hua Zhang (zhhuabj)
Changed in charm-glance:
status: Triaged → Invalid
Changed in charm-neutron-api:
status: Triaged → Invalid
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-openstack-dashboard (master)
Changed in charm-openstack-dashboard:
status: Triaged → In Progress
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-glance (master)
Changed in charm-glance:
status: Invalid → In Progress
Changed in charm-keystone:
status: Triaged → In Progress
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-keystone (master)
Revision history for this message
Hua Zhang (zhhuabj) wrote :
Changed in charm-ceilometer:
status: New → In Progress
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Change abandoned on charm-glance (master)

Change abandoned by "Zhang Hua <email address hidden>" on branch: master
Review: https://review.opendev.org/c/openstack/charm-glance/+/886376
Reason: abandoning it because glance don't need this patch accourding to https://github.com/juju/charm-helpers/pull/801#issuecomment-1623502522

$ grep -r 'WSGIWorkerConfigContext' glance
glance/charmhelpers/contrib/openstack/context.py:class WSGIWorkerConfigContext(WorkerConfigContext):

Hua Zhang (zhhuabj)
Changed in charm-glance:
status: In Progress → Invalid
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-nova-cloud-controller (master)

Reviewed: https://review.opendev.org/c/openstack/charm-nova-cloud-controller/+/885836
Committed: https://opendev.org/openstack/charm-nova-cloud-controller/commit/e0d3b6a36553f3627c86bdef420fd55e24e9a0b5
Submitter: "Zuul (22348)"
Branch: master

commit e0d3b6a36553f3627c86bdef420fd55e24e9a0b5
Author: zhhuabj <email address hidden>
Date: Mon Sep 4 18:15:31 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: I85d48b646b3d0778aae3a7dd3942ad45b4af002d

Changed in charm-nova-cloud-controller:
status: In Progress → Fix Committed
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-keystone (master)

Reviewed: https://review.opendev.org/c/openstack/charm-keystone/+/886377
Committed: https://opendev.org/openstack/charm-keystone/commit/b4ee292bb60c2558c6adc98e21545713a329fbf2
Submitter: "Zuul (22348)"
Branch: master

commit b4ee292bb60c2558c6adc98e21545713a329fbf2
Author: zhhuabj <email address hidden>
Date: Mon Sep 4 18:33:51 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ia5852c3ebe84bd0355670f262cbe5e1cd433a08d

Changed in charm-keystone:
status: In Progress → Fix Committed
Changed in charm-openstack-dashboard:
status: In Progress → Fix Committed
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-openstack-dashboard (master)

Reviewed: https://review.opendev.org/c/openstack/charm-openstack-dashboard/+/886373
Committed: https://opendev.org/openstack/charm-openstack-dashboard/commit/5c34112030e8961d67b4718eb563cbe501eeed31
Submitter: "Zuul (22348)"
Branch: master

commit 5c34112030e8961d67b4718eb563cbe501eeed31
Author: zhhuabj <email address hidden>
Date: Mon Sep 4 18:30:45 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: I671f4b7f655f12cc558fc64116e31f16560dd2e7

Changed in charm-cinder:
status: In Progress → Fix Committed
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-cinder (master)

Reviewed: https://review.opendev.org/c/openstack/charm-cinder/+/886356
Committed: https://opendev.org/openstack/charm-cinder/commit/8b366fbf6b56373958b9579faf98bff898e62378
Submitter: "Zuul (22348)"
Branch: master

commit 8b366fbf6b56373958b9579faf98bff898e62378
Author: zhhuabj <email address hidden>
Date: Mon Sep 4 18:41:43 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ieca45a470e7f827194780b2fee9f8c6049b94da3

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-cinder (stable/ussuri)

Fix proposed to branch: stable/ussuri
Review: https://review.opendev.org/c/openstack/charm-cinder/+/897755

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-keystone (stable/ussuri)

Fix proposed to branch: stable/ussuri
Review: https://review.opendev.org/c/openstack/charm-keystone/+/897756

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-nova-cloud-controller (stable/ussuri)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-openstack-dashboard (stable/ussuri)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-cinder (stable/yoga)

Fix proposed to branch: stable/yoga
Review: https://review.opendev.org/c/openstack/charm-cinder/+/897760

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-keystone (stable/yoga)

Fix proposed to branch: stable/yoga
Review: https://review.opendev.org/c/openstack/charm-keystone/+/897761

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-nova-cloud-controller (stable/yoga)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-openstack-dashboard (stable/yoga)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-cinder (stable/zed)

Fix proposed to branch: stable/zed
Review: https://review.opendev.org/c/openstack/charm-cinder/+/897764

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-keystone (stable/zed)

Fix proposed to branch: stable/zed
Review: https://review.opendev.org/c/openstack/charm-keystone/+/897765

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-nova-cloud-controller (stable/zed)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-openstack-dashboard (stable/zed)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-keystone (stable/2023.1)

Fix proposed to branch: stable/2023.1
Review: https://review.opendev.org/c/openstack/charm-keystone/+/898539

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-nova-cloud-controller (stable/2023.1)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-cinder (stable/2023.1)

Fix proposed to branch: stable/2023.1
Review: https://review.opendev.org/c/openstack/charm-cinder/+/898541

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-openstack-dashboard (stable/2023.1)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-ceilometer (stable/2023.1)

Fix proposed to branch: stable/2023.1
Review: https://review.opendev.org/c/openstack/charm-ceilometer/+/898545

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-ceilometer (stable/zed)

Fix proposed to branch: stable/zed
Review: https://review.opendev.org/c/openstack/charm-ceilometer/+/898546

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-ceilometer (stable/yoga)

Fix proposed to branch: stable/yoga
Review: https://review.opendev.org/c/openstack/charm-ceilometer/+/898547

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-ceilometer (stable/ussuri)

Fix proposed to branch: stable/ussuri
Review: https://review.opendev.org/c/openstack/charm-ceilometer/+/898548

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-ceilometer (master)

Reviewed: https://review.opendev.org/c/openstack/charm-ceilometer/+/887793
Committed: https://opendev.org/openstack/charm-ceilometer/commit/a4ffe0e28c997c8bd19f1bcbf9501a86b31701e3
Submitter: "Zuul (22348)"
Branch: master

commit a4ffe0e28c997c8bd19f1bcbf9501a86b31701e3
Author: zhhuabj <email address hidden>
Date: Tue Oct 17 18:13:35 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ia50067e1f64a6003d5c2ca2ebc22903a1ab8d3ae

Changed in charm-ceilometer:
status: In Progress → Fix Committed
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-cinder (stable/xena)

Fix proposed to branch: stable/xena
Review: https://review.opendev.org/c/openstack/charm-cinder/+/900000

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-keystone (stable/xena)

Fix proposed to branch: stable/xena
Review: https://review.opendev.org/c/openstack/charm-keystone/+/900001

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-nova-cloud-controller (stable/xena)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-openstack-dashboard (stable/xena)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-ceilometer (stable/xena)

Fix proposed to branch: stable/xena
Review: https://review.opendev.org/c/openstack/charm-ceilometer/+/900004

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-cinder (stable/wallaby)

Fix proposed to branch: stable/wallaby
Review: https://review.opendev.org/c/openstack/charm-cinder/+/900005

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-keystone (stable/wallaby)

Fix proposed to branch: stable/wallaby
Review: https://review.opendev.org/c/openstack/charm-keystone/+/900006

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-nova-cloud-controller (stable/wallaby)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-openstack-dashboard (stable/wallaby)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-ceilometer (stable/wallaby)

Fix proposed to branch: stable/wallaby
Review: https://review.opendev.org/c/openstack/charm-ceilometer/+/900009

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-cinder (stable/victoria)

Fix proposed to branch: stable/victoria
Review: https://review.opendev.org/c/openstack/charm-cinder/+/900010

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-keystone (stable/victoria)

Fix proposed to branch: stable/victoria
Review: https://review.opendev.org/c/openstack/charm-keystone/+/900011

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-nova-cloud-controller (stable/victoria)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-openstack-dashboard (stable/victoria)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to charm-ceilometer (stable/victoria)

Fix proposed to branch: stable/victoria
Review: https://review.opendev.org/c/openstack/charm-ceilometer/+/900014

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-ceilometer (stable/2023.1)

Reviewed: https://review.opendev.org/c/openstack/charm-ceilometer/+/898545
Committed: https://opendev.org/openstack/charm-ceilometer/commit/a93efae077aca83376ded931d453cae55155bccb
Submitter: "Zuul (22348)"
Branch: stable/2023.1

commit a93efae077aca83376ded931d453cae55155bccb
Author: Zhang Hua <email address hidden>
Date: Tue Oct 17 18:04:58 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: If1f41ae2c3048540f9bcace4bbb9d24200cfb427

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-nova-cloud-controller (stable/2023.1)

Reviewed: https://review.opendev.org/c/openstack/charm-nova-cloud-controller/+/898540
Committed: https://opendev.org/openstack/charm-nova-cloud-controller/commit/aca10ccfd9a8a59cec912677fc3b59247eb5c450
Submitter: "Zuul (22348)"
Branch: stable/2023.1

commit aca10ccfd9a8a59cec912677fc3b59247eb5c450
Author: Zhang Hua <email address hidden>
Date: Tue Oct 17 17:40:01 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Change-Id: Ib89f6124b81ffb2579f9bd6c4bf25337ad2d4d19
    Closes-Bug: #2021550

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-keystone (stable/2023.1)

Reviewed: https://review.opendev.org/c/openstack/charm-keystone/+/898539
Committed: https://opendev.org/openstack/charm-keystone/commit/77c0808388d9d84fbed97ff7312fc99951a0b8f0
Submitter: "Zuul (22348)"
Branch: stable/2023.1

commit 77c0808388d9d84fbed97ff7312fc99951a0b8f0
Author: Zhang Hua <email address hidden>
Date: Tue Oct 17 17:36:27 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: I8d738b4aa89ba2e01236ae4dfd109864e53747a7

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-openstack-dashboard (stable/2023.1)

Reviewed: https://review.opendev.org/c/openstack/charm-openstack-dashboard/+/898542
Committed: https://opendev.org/openstack/charm-openstack-dashboard/commit/e6771d6b2ea12a03fed810179003301687f56bef
Submitter: "Zuul (22348)"
Branch: stable/2023.1

commit e6771d6b2ea12a03fed810179003301687f56bef
Author: Zhang Hua <email address hidden>
Date: Tue Oct 17 17:44:43 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ic826edf55267f2f73364ff54e8c6a8bf7bc097b4

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-cinder (stable/2023.1)

Reviewed: https://review.opendev.org/c/openstack/charm-cinder/+/898541
Committed: https://opendev.org/openstack/charm-cinder/commit/0af7f68ef3d036ed8f42bffdcd71ffd17dd82b6a
Submitter: "Zuul (22348)"
Branch: stable/2023.1

commit 0af7f68ef3d036ed8f42bffdcd71ffd17dd82b6a
Author: Zhang Hua <email address hidden>
Date: Tue Oct 17 17:43:21 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ibbba1aaafb82da9fa5f28125bf459ffca3b84888

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-openstack-dashboard (stable/zed)

Reviewed: https://review.opendev.org/c/openstack/charm-openstack-dashboard/+/897767
Committed: https://opendev.org/openstack/charm-openstack-dashboard/commit/d0d0f0f123b63fe2f234e6ef476946daf227e115
Submitter: "Zuul (22348)"
Branch: stable/zed

commit d0d0f0f123b63fe2f234e6ef476946daf227e115
Author: zhhuabj <email address hidden>
Date: Tue Oct 10 15:33:58 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ic89feaf34f6f9060fa1fde4a9dacb7446dd7b532

tags: added: in-stable-zed
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-keystone (stable/zed)

Reviewed: https://review.opendev.org/c/openstack/charm-keystone/+/897765
Committed: https://opendev.org/openstack/charm-keystone/commit/00ed326e340ad4f2050fbb7a1bb3bc64e45aa24d
Submitter: "Zuul (22348)"
Branch: stable/zed

commit 00ed326e340ad4f2050fbb7a1bb3bc64e45aa24d
Author: zhhuabj <email address hidden>
Date: Tue Oct 10 15:31:41 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: If109d4873fe728526b97478c93f01482b8b3199d

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-cinder (stable/zed)

Reviewed: https://review.opendev.org/c/openstack/charm-cinder/+/897764
Committed: https://opendev.org/openstack/charm-cinder/commit/4d99a5bff87a14be12659af2c18e39c280c8c25f
Submitter: "Zuul (22348)"
Branch: stable/zed

commit 4d99a5bff87a14be12659af2c18e39c280c8c25f
Author: zhhuabj <email address hidden>
Date: Tue Oct 10 15:30:02 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Iefaea961e054bfcce8185b7d51062fb41c56e302

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-nova-cloud-controller (stable/zed)

Reviewed: https://review.opendev.org/c/openstack/charm-nova-cloud-controller/+/897766
Committed: https://opendev.org/openstack/charm-nova-cloud-controller/commit/ade42e6163b6fbb4bdbbca0ebf2eefe6123174e9
Submitter: "Zuul (22348)"
Branch: stable/zed

commit ade42e6163b6fbb4bdbbca0ebf2eefe6123174e9
Author: zhhuabj <email address hidden>
Date: Tue Oct 10 15:32:47 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Change-Id: I4e2ffb1d1883d039899c7b1db3e713a54d20ba5e
    Closes-Bug: #2021550

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-ceilometer (stable/zed)

Reviewed: https://review.opendev.org/c/openstack/charm-ceilometer/+/898546
Committed: https://opendev.org/openstack/charm-ceilometer/commit/1a85627feaa5cd4c93546ffbde62825d90e17895
Submitter: "Zuul (22348)"
Branch: stable/zed

commit 1a85627feaa5cd4c93546ffbde62825d90e17895
Author: zhhuabj <email address hidden>
Date: Tue Oct 17 18:10:09 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ifb0452bbfa9c80312a3a300b0730a102202d397f

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-ceilometer (stable/yoga)

Reviewed: https://review.opendev.org/c/openstack/charm-ceilometer/+/898547
Committed: https://opendev.org/openstack/charm-ceilometer/commit/674c6aa83ccba48672e7bd5cda7c27ef5946e9c7
Submitter: "Zuul (22348)"
Branch: stable/yoga

commit 674c6aa83ccba48672e7bd5cda7c27ef5946e9c7
Author: zhhuabj <email address hidden>
Date: Tue Oct 17 18:09:19 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: I57bbff08cd2ef8ac8aef58675aefa6dfea11f167

tags: added: in-stable-yoga
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-nova-cloud-controller (stable/yoga)

Reviewed: https://review.opendev.org/c/openstack/charm-nova-cloud-controller/+/897762
Committed: https://opendev.org/openstack/charm-nova-cloud-controller/commit/f7ae07bcbf81db999c1533c29987e907ac2b64af
Submitter: "Zuul (22348)"
Branch: stable/yoga

commit f7ae07bcbf81db999c1533c29987e907ac2b64af
Author: zhhuabj <email address hidden>
Date: Tue Oct 10 15:27:12 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Change-Id: I34258c46c839db1c70a3967b7e1ee6889db8a7fd
    Closes-Bug: #2021550

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-cinder (stable/yoga)

Reviewed: https://review.opendev.org/c/openstack/charm-cinder/+/897760
Committed: https://opendev.org/openstack/charm-cinder/commit/11b9b57305dc62a417975832956852c2ed3b5fd7
Submitter: "Zuul (22348)"
Branch: stable/yoga

commit 11b9b57305dc62a417975832956852c2ed3b5fd7
Author: zhhuabj <email address hidden>
Date: Tue Oct 10 15:25:08 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: I30f1f6643561757516d219797df0b767037d093f

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-keystone (stable/yoga)

Reviewed: https://review.opendev.org/c/openstack/charm-keystone/+/897761
Committed: https://opendev.org/openstack/charm-keystone/commit/a6dc77b146eb5c436ebacf6e8b3d34bf689aac0c
Submitter: "Zuul (22348)"
Branch: stable/yoga

commit a6dc77b146eb5c436ebacf6e8b3d34bf689aac0c
Author: zhhuabj <email address hidden>
Date: Tue Oct 10 15:26:08 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: I9b7d5452c08f43362ed3d1144ef7ef89699f3872

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-openstack-dashboard (stable/yoga)

Reviewed: https://review.opendev.org/c/openstack/charm-openstack-dashboard/+/897763
Committed: https://opendev.org/openstack/charm-openstack-dashboard/commit/4dd78134d8bffd72a0081b11714d559187753976
Submitter: "Zuul (22348)"
Branch: stable/yoga

commit 4dd78134d8bffd72a0081b11714d559187753976
Author: zhhuabj <email address hidden>
Date: Tue Oct 10 15:28:39 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: I58ff6da6a916ce11314b63b5762569ae385e0a5b

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-ceilometer (stable/xena)

Reviewed: https://review.opendev.org/c/openstack/charm-ceilometer/+/900004
Committed: https://opendev.org/openstack/charm-ceilometer/commit/83043e8d8495176cc64e3c246e4cd6ed4f97a18d
Submitter: "Zuul (22348)"
Branch: stable/xena

commit 83043e8d8495176cc64e3c246e4cd6ed4f97a18d
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:47:26 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ic97928e48866d5e32c6be20490159a47c0bacf6e

tags: added: in-stable-xena
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-ceilometer (stable/wallaby)

Reviewed: https://review.opendev.org/c/openstack/charm-ceilometer/+/900009
Committed: https://opendev.org/openstack/charm-ceilometer/commit/874c21d1d4b042ed13d59173d8feed78a5c183b6
Submitter: "Zuul (22348)"
Branch: stable/wallaby

commit 874c21d1d4b042ed13d59173d8feed78a5c183b6
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:53:44 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ic80f7cbd4f92f988699f27d1c4c58ba724851a77

tags: added: in-stable-wallaby
tags: added: in-stable-victoria
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-ceilometer (stable/victoria)

Reviewed: https://review.opendev.org/c/openstack/charm-ceilometer/+/900014
Committed: https://opendev.org/openstack/charm-ceilometer/commit/8c4d75097b7c33823fe0cdcb44bac4081a315300
Submitter: "Zuul (22348)"
Branch: stable/victoria

commit 8c4d75097b7c33823fe0cdcb44bac4081a315300
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 13:00:26 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: I31784eb76cb20df63a63ed61ed7e6311dafe9184

tags: added: in-stable-ussuri
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-ceilometer (stable/ussuri)

Reviewed: https://review.opendev.org/c/openstack/charm-ceilometer/+/898548
Committed: https://opendev.org/openstack/charm-ceilometer/commit/94b6bc2a2172017471a59b27379f2e9c53cf4734
Submitter: "Zuul (22348)"
Branch: stable/ussuri

commit 94b6bc2a2172017471a59b27379f2e9c53cf4734
Author: Zhang Hua <email address hidden>
Date: Wed Nov 22 13:00:11 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ifbe2f230dfe0fead4d9d1751eb7ed77009e819ab

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-keystone (stable/xena)

Reviewed: https://review.opendev.org/c/openstack/charm-keystone/+/900001
Committed: https://opendev.org/openstack/charm-keystone/commit/382b73484231f5d3749bbc3a4618791a77682794
Submitter: "Zuul (22348)"
Branch: stable/xena

commit 382b73484231f5d3749bbc3a4618791a77682794
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:43:23 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ib489997a054cdfb3161c84281fa62bf7a7c8d623

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-keystone (stable/wallaby)

Reviewed: https://review.opendev.org/c/openstack/charm-keystone/+/900006
Committed: https://opendev.org/openstack/charm-keystone/commit/0ba09234b1991267fbbdc94504670f8e8779a836
Submitter: "Zuul (22348)"
Branch: stable/wallaby

commit 0ba09234b1991267fbbdc94504670f8e8779a836
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:50:42 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: I54bc6a95bdb46f9e25516e941c53e5f03710e374

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-keystone (stable/victoria)

Reviewed: https://review.opendev.org/c/openstack/charm-keystone/+/900011
Committed: https://opendev.org/openstack/charm-keystone/commit/1f48fdcce3adb7b63dd082d6bb9646ee5a9c806e
Submitter: "Zuul (22348)"
Branch: stable/victoria

commit 1f48fdcce3adb7b63dd082d6bb9646ee5a9c806e
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:57:01 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: I4c9fddd4785dfd7244a391638de41c76fcd75dba

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-keystone (stable/ussuri)

Reviewed: https://review.opendev.org/c/openstack/charm-keystone/+/897756
Committed: https://opendev.org/openstack/charm-keystone/commit/e5383823ab034c4a600edf703e1ad06034731a93
Submitter: "Zuul (22348)"
Branch: stable/ussuri

commit e5383823ab034c4a600edf703e1ad06034731a93
Author: Zhang Hua <email address hidden>
Date: Wed Nov 22 12:58:40 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ie5b97eadf29206f9a289caded0f90e78b5898828

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-nova-cloud-controller (stable/xena)

Reviewed: https://review.opendev.org/c/openstack/charm-nova-cloud-controller/+/900002
Committed: https://opendev.org/openstack/charm-nova-cloud-controller/commit/ec50b1e70fb6a009610af4b94c61dc8d03303430
Submitter: "Zuul (22348)"
Branch: stable/xena

commit ec50b1e70fb6a009610af4b94c61dc8d03303430
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:44:44 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Change-Id: Ibe060cec692e54ab62ce30d1e64c6eb366ee3e4d
    Closes-Bug: #2021550

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-cinder (stable/xena)

Reviewed: https://review.opendev.org/c/openstack/charm-cinder/+/900000
Committed: https://opendev.org/openstack/charm-cinder/commit/0443960b5a9bb42c22b4323c421df38016b91f54
Submitter: "Zuul (22348)"
Branch: stable/xena

commit 0443960b5a9bb42c22b4323c421df38016b91f54
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:32:08 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ib249be7f03ed3156c81fffb6cbac251c502e9b80

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-cinder (stable/wallaby)

Reviewed: https://review.opendev.org/c/openstack/charm-cinder/+/900005
Committed: https://opendev.org/openstack/charm-cinder/commit/86fbf6507edbda9fbf7e89ac081251d1d2a52afb
Submitter: "Zuul (22348)"
Branch: stable/wallaby

commit 86fbf6507edbda9fbf7e89ac081251d1d2a52afb
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:49:32 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ib9d8bae0aaf49f836c0165c82fd5e66b3fbe64cb

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-cinder (stable/victoria)

Reviewed: https://review.opendev.org/c/openstack/charm-cinder/+/900010
Committed: https://opendev.org/openstack/charm-cinder/commit/960e628e61ae399e7aca9b4afd4cefa0c43c2ac6
Submitter: "Zuul (22348)"
Branch: stable/victoria

commit 960e628e61ae399e7aca9b4afd4cefa0c43c2ac6
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:55:23 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Icfbdfca30d515698558cae27dadd6ce9e680a861

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-openstack-dashboard (stable/xena)

Reviewed: https://review.opendev.org/c/openstack/charm-openstack-dashboard/+/900003
Committed: https://opendev.org/openstack/charm-openstack-dashboard/commit/2fe4d1e1e9c4b930d1b7f9386e7e928832d29d9a
Submitter: "Zuul (22348)"
Branch: stable/xena

commit 2fe4d1e1e9c4b930d1b7f9386e7e928832d29d9a
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:46:05 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Icd8dd674b6b5767a5db766dc1ba79bb216bbce3a

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-openstack-dashboard (stable/wallaby)

Reviewed: https://review.opendev.org/c/openstack/charm-openstack-dashboard/+/900008
Committed: https://opendev.org/openstack/charm-openstack-dashboard/commit/634b424f424d5ae2e69d3f14cc0bf23d6820ce07
Submitter: "Zuul (22348)"
Branch: stable/wallaby

commit 634b424f424d5ae2e69d3f14cc0bf23d6820ce07
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:52:42 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: I0d71fde094f8c7e34e0ab5c3bd0adb9cb795c234

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-nova-cloud-controller (stable/wallaby)

Reviewed: https://review.opendev.org/c/openstack/charm-nova-cloud-controller/+/900007
Committed: https://opendev.org/openstack/charm-nova-cloud-controller/commit/9861b4183aad1681ef62578302c6cd7189282d80
Submitter: "Zuul (22348)"
Branch: stable/wallaby

commit 9861b4183aad1681ef62578302c6cd7189282d80
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:51:45 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Change-Id: Ib0037e3966ef300edc3473268d57f3f7a3b9c260
    Closes-Bug: #2021550

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-nova-cloud-controller (stable/victoria)

Reviewed: https://review.opendev.org/c/openstack/charm-nova-cloud-controller/+/900012
Committed: https://opendev.org/openstack/charm-nova-cloud-controller/commit/57c7a9be3987fbef52b66a7c2b71e74372c26cf4
Submitter: "Zuul (22348)"
Branch: stable/victoria

commit 57c7a9be3987fbef52b66a7c2b71e74372c26cf4
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:58:19 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Change-Id: I29685c8931a20eef4ad44aa130bb0198fbcb9885
    Closes-Bug: #2021550

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-nova-cloud-controller (stable/ussuri)

Reviewed: https://review.opendev.org/c/openstack/charm-nova-cloud-controller/+/897757
Committed: https://opendev.org/openstack/charm-nova-cloud-controller/commit/115bf8f78f5a40233267006b71dc8a466cbf541a
Submitter: "Zuul (22348)"
Branch: stable/ussuri

commit 115bf8f78f5a40233267006b71dc8a466cbf541a
Author: zhhuabj <email address hidden>
Date: Tue Oct 10 15:19:50 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Change-Id: I7bbf1443ff02515e24c8f7e0b6b21c986636ddce
    Closes-Bug: #2021550

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-openstack-dashboard (stable/victoria)

Reviewed: https://review.opendev.org/c/openstack/charm-openstack-dashboard/+/900013
Committed: https://opendev.org/openstack/charm-openstack-dashboard/commit/a72690a7c4d3c92bd488691ca90927e3e4314881
Submitter: "Zuul (22348)"
Branch: stable/victoria

commit a72690a7c4d3c92bd488691ca90927e3e4314881
Author: Zhang Hua <email address hidden>
Date: Fri Nov 3 12:59:29 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: I1f96d5d5663404af8ce26afe31402996f6f321ab

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-openstack-dashboard (stable/ussuri)

Reviewed: https://review.opendev.org/c/openstack/charm-openstack-dashboard/+/897758
Committed: https://opendev.org/openstack/charm-openstack-dashboard/commit/39ec13f5c78c2bee0032b65650e63e6721474ee4
Submitter: "Zuul (22348)"
Branch: stable/ussuri

commit 39ec13f5c78c2bee0032b65650e63e6721474ee4
Author: Zhang Hua <email address hidden>
Date: Wed Nov 22 12:53:13 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ic2d8cd94713161e79e907de3b3031191fa8d1c31

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to charm-cinder (stable/ussuri)

Reviewed: https://review.opendev.org/c/openstack/charm-cinder/+/897755
Committed: https://opendev.org/openstack/charm-cinder/commit/43f319b46bf638ec859f777aedb34c7765114e3f
Submitter: "Zuul (22348)"
Branch: stable/ussuri

commit 43f319b46bf638ec859f777aedb34c7765114e3f
Author: Zhang Hua <email address hidden>
Date: Tue Oct 10 14:59:19 2023 +0800

    Support disabling apache wsgi socket rotation

    Bug LP 1863232 introduced a new Apache configuration option called
    WSGISocketRotation which allows users to disable wsgi socket
    rotation. This patch makes this configurable with a new
    wsgi-socket-rotation config option that defaults to the Apache
    default and can optionally be set to False.

    Closes-Bug: #2021550
    Change-Id: Ibf54e8ed543e7ace93e24a494665cf40bfbba54b

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.