[SRU] iSCSI+Multipath: Volume attachment hungs if sessiong scanning fails

Bug #1915678 reported by Takashi Kajinami
28
This bug affects 4 people
Affects Status Importance Assigned to Milestone
Ubuntu Cloud Archive
Fix Released
Undecided
Unassigned
Stein
Fix Released
High
Brett Milford
Train
Fix Released
High
Brett Milford
Ussuri
Fix Released
High
Brett Milford
Victoria
Fix Released
High
Brett Milford
os-brick
Fix Released
High
Unassigned
python-os-brick (Ubuntu)
Fix Released
Undecided
Unassigned
Bionic
Fix Released
Undecided
Brett Milford
Focal
Fix Released
Undecided
Brett Milford
Hirsute
Fix Released
Undecided
Unassigned
Impish
Fix Released
Undecided
Unassigned
Jammy
Fix Released
Undecided
Unassigned

Bug Description

[Impact]

 * If some commands like "iscsiadm -m session" fail, the thread can abort immediately without updating any counters like failed_logins or stopped_threads properly, because there are no try-except block to catch exceptions.
 * The main thread keeps waiting until these counters are updated, and this results in stuck of volume attachment process.

[Test Case]

 * Deploy Cinder with a backend that uses an iSCSI driver and configure Multipath
 * Attach a volume to an instance (first attachment for a period
 * See log line like:
2021-12-01 00:23:24.044 2679 WARNING os_brick.initiator.connectors.iscsi [...] iscsiadm stderr output when getting sessions: iscsiadm: No active sessions.
 * Volume attachment never completes
 * Passing test: Log line appears but volume attachment succeeds.

[Where problems could occur]

 * Change primarily introduces error handling and doesn't change implementation details.
   As such we may see an error condition logged.

--- Original Description ---

Currently we execute login to iscsi portals and device discovery in multiple threads concurrently when multipath is enabled.

However if some commands like "iscsiadm -m session" fail, the thread can abort immediately without updating any counters like failed_logins or stopped_threads properly, because there are no try-except block to catch exceptions.
However the main thread keeps waiting until these counters are updated, and this results in stuck of volume attachment process.

This issue was initially reported in downstream bug https://bugzilla.redhat.com/show_bug.cgi?id=1923975 , and maybe is caused by a bug in iscsiadm command.
However we should handle the error more properly because current behavior requires operators to restart services like cinder-volume to resolve the stuck.

Changed in os-brick:
importance: Undecided → High
tags: added: attach iscsi multipath volume
Revision history for this message
Brian Rosmaita (brian-rosmaita) wrote :
Changed in os-brick:
status: New → In Progress
description: updated
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/os-brick 4.3.0

This issue was fixed in the openstack/os-brick 4.3.0 release.

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

Fix proposed to branch: stable/ussuri
Review: https://review.opendev.org/c/openstack/os-brick/+/792359

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

Reviewed: https://review.opendev.org/c/openstack/os-brick/+/792359
Committed: https://opendev.org/openstack/os-brick/commit/c336cb76b318f987d43ff908a5b7c9d40b5c4dd6
Submitter: "Zuul (22348)"
Branch: stable/ussuri

commit c336cb76b318f987d43ff908a5b7c9d40b5c4dd6
Author: Takashi Kajinami <email address hidden>
Date: Mon Feb 15 10:58:13 2021 +0900

    Avoid unhandled exceptions during connecting to iSCSI portals

    Currently we don't properly catch some possible exceptions during
    connectiing to iSCSI portals, like failures in "iscsiadm -m session".
    Because of this _connect_vol threads can abort unexpectedly in some
    failure patterns, and this abort causes hung in subsequent steps
    waiting for results from _connct_vol threads.

    This change ensures that any exceptions during connecting to iSCSI
    portals are handled in the _connect_vol method corectly, to avoid
    unexpected abort without updating thread results.

    Conflicts:
            os_brick/tests/initiator/connectors/test_iscsi.py

    Closes-Bug: #1915678
    Change-Id: I0278c502806b99f8ec65cb146e3852e43031e9b8
    (cherry picked from commit 4478433550ddab970f106636a4ba5fbba82c5e39)
    (cherry picked from commit 57c8f4334c0e58b151f449f3316bb9e1c8ed6da4)

tags: added: in-stable-ussuri
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to os-brick (stable/train)

Fix proposed to branch: stable/train
Review: https://review.opendev.org/c/openstack/os-brick/+/796671

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to os-brick (stable/train)

Reviewed: https://review.opendev.org/c/openstack/os-brick/+/796671
Committed: https://opendev.org/openstack/os-brick/commit/d09c385c24288dced7bd685072fe850422dd14d9
Submitter: "Zuul (22348)"
Branch: stable/train

commit d09c385c24288dced7bd685072fe850422dd14d9
Author: Takashi Kajinami <email address hidden>
Date: Mon Feb 15 10:58:13 2021 +0900

    Avoid unhandled exceptions during connecting to iSCSI portals

    Currently we don't properly catch some possible exceptions during
    connectiing to iSCSI portals, like failures in "iscsiadm -m session".
    Because of this _connect_vol threads can abort unexpectedly in some
    failure patterns, and this abort causes hung in subsequent steps
    waiting for results from _connct_vol threads.

    This change ensures that any exceptions during connecting to iSCSI
    portals are handled in the _connect_vol method corectly, to avoid
    unexpected abort without updating thread results.

    Conflicts:
            os_brick/tests/initiator/connectors/test_iscsi.py

    Closes-Bug: #1915678
    Change-Id: I0278c502806b99f8ec65cb146e3852e43031e9b8
    (cherry picked from commit 4478433550ddab970f106636a4ba5fbba82c5e39)
    (cherry picked from commit 57c8f4334c0e58b151f449f3316bb9e1c8ed6da4)
    (cherry picked from commit c336cb76b318f987d43ff908a5b7c9d40b5c4dd6)

tags: added: in-stable-train
Revision history for this message
Takashi Kajinami (kajinamit) wrote (last edit ): Re: iSCSI+Multipath: Volume attachment hungs if sessiong scanning fails

The fix[1] was already released in os-brick 4.3.0 .

[1] https://review.opendev.org/c/openstack/os-brick/+/792359

Changed in os-brick:
status: In Progress → Fix Released
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/os-brick 3.0.7

This issue was fixed in the openstack/os-brick 3.0.7 release.

Revision history for this message
Pooja Ghumre (pooja-9) wrote : Re: iSCSI+Multipath: Volume attachment hungs if sessiong scanning fails

Thanks for backporting the fix to Train release!
Can we please generate a new patch (2.10.8) for this issue, since currently Openstack Train upper-constraints file is pointing to 2.10.7 which doesn't have this fix.

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/os-brick 4.0.4

This issue was fixed in the openstack/os-brick 4.0.4 release.

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to os-brick (stable/stein)

Fix proposed to branch: stable/stein
Review: https://review.opendev.org/c/openstack/os-brick/+/814840

Revision history for this message
Brett Milford (brettmilford) wrote : Re: iSCSI+Multipath: Volume attachment hungs if sessiong scanning fails

Hi @kajinamit, I'm proposing your fix be back ported to Stein:

https://review.opendev.org/c/openstack/os-brick/+/814840

Revision history for this message
Takashi Kajinami (kajinamit) wrote :

> Can we please generate a new patch (2.10.8) for this issue, since currently Openstack Train upper-constraints file is pointing to 2.10.7 which doesn't have this fix.

My understanding is that Train has already entered into EM phase and a new release is no longer created. I understand your point but I'm not sure whether/how we can raise an exception.

> Hi @kajinamit, I'm proposing your fix be back ported to Stein:
Thanks. I think the issue affects older branches as well so I agree it'd make sense to backport that to older releases.

description: updated
Changed in python-os-brick (Ubuntu Hirsute):
status: New → Fix Released
Changed in python-os-brick (Ubuntu Impish):
status: New → Fix Released
Changed in python-os-brick (Ubuntu Jammy):
status: New → Fix Released
Changed in python-os-brick (Ubuntu Focal):
status: New → In Progress
assignee: nobody → Brett Milford (brettmilford)
Changed in python-os-brick (Ubuntu Bionic):
status: New → In Progress
assignee: nobody → Brett Milford (brettmilford)
Revision history for this message
Brett Milford (brettmilford) wrote :
Revision history for this message
Brett Milford (brettmilford) wrote :
summary: - iSCSI+Multipath: Volume attachment hungs if sessiong scanning fails
+ [SRU] iSCSI+Multipath: Volume attachment hungs if sessiong scanning
+ fails
tags: added: seg sts sts-sponsor
tags: added: sts-sru-needed
Revision history for this message
Brett Milford (brettmilford) wrote :
Revision history for this message
Brett Milford (brettmilford) wrote :
Revision history for this message
Brett Milford (brettmilford) wrote :
Revision history for this message
Brett Milford (brettmilford) wrote :
Revision history for this message
Brett Milford (brettmilford) wrote :
Revision history for this message
Brett Milford (brettmilford) wrote :
Revision history for this message
Corey Bryant (corey.bryant) wrote :

Thanks Brett. I've uploaded to the focal and bionic unapproved queues where it is awaiting review by the SRU team, as well as to the cloud archive staging PPAs.

Changed in cloud-archive:
status: New → Fix Released
description: updated
description: updated
Revision history for this message
Corey Bryant (corey.bryant) wrote : Please test proposed package

Hello Takashi, or anyone else affected,

Accepted python-os-brick into victoria-proposed. The package will build now and be available in the Ubuntu Cloud Archive in a few hours, and then in the -proposed repository.

Please help us by testing this new package. To enable the -proposed repository:

  sudo add-apt-repository cloud-archive:victoria-proposed
  sudo apt-get update

Your feedback will aid us getting this update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, and change the tag from verification-victoria-needed to verification-victoria-done. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-victoria-failed. In either case, details of your testing will help us make a better decision.

Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance!

tags: added: verification-victoria-needed
Revision history for this message
Brian Murray (brian-murray) wrote :

Hello Takashi, or anyone else affected,

Accepted python-os-brick into focal-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/python-os-brick/3.0.1-0ubuntu1.4 in a few hours, and then in the -proposed repository.

Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-needed-focal to verification-done-focal. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-failed-focal. In either case, without details of your testing we will not be able to proceed.

Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance for helping!

N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days.

Changed in python-os-brick (Ubuntu Focal):
status: In Progress → Fix Committed
tags: added: verification-needed verification-needed-focal
Changed in python-os-brick (Ubuntu Bionic):
status: In Progress → Fix Committed
tags: added: verification-needed-bionic
Revision history for this message
Brian Murray (brian-murray) wrote :

Hello Takashi, or anyone else affected,

Accepted python-os-brick into bionic-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/python-os-brick/2.3.0-0ubuntu1.3 in a few hours, and then in the -proposed repository.

Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, what testing has been performed on the package and change the tag from verification-needed-bionic to verification-done-bionic. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-failed-bionic. In either case, without details of your testing we will not be able to proceed.

Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance for helping!

N.B. The updated package will be released to -updates after the bug(s) fixed by this package have been verified and the package has been in -proposed for a minimum of 7 days.

Revision history for this message
Corey Bryant (corey.bryant) wrote :

Hello Takashi, or anyone else affected,

Accepted python-os-brick into ussuri-proposed. The package will build now and be available in the Ubuntu Cloud Archive in a few hours, and then in the -proposed repository.

Please help us by testing this new package. To enable the -proposed repository:

  sudo add-apt-repository cloud-archive:ussuri-proposed
  sudo apt-get update

Your feedback will aid us getting this update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, and change the tag from verification-ussuri-needed to verification-ussuri-done. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-ussuri-failed. In either case, details of your testing will help us make a better decision.

Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance!

tags: added: verification-ussuri-needed
Revision history for this message
Corey Bryant (corey.bryant) wrote :

Hello Takashi, or anyone else affected,

Accepted python-os-brick into stein-proposed. The package will build now and be available in the Ubuntu Cloud Archive in a few hours, and then in the -proposed repository.

Please help us by testing this new package. To enable the -proposed repository:

  sudo add-apt-repository cloud-archive:stein-proposed
  sudo apt-get update

Your feedback will aid us getting this update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, and change the tag from verification-stein-needed to verification-stein-done. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-stein-failed. In either case, details of your testing will help us make a better decision.

Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance!

tags: added: verification-stein-needed
Revision history for this message
Corey Bryant (corey.bryant) wrote :

Hello Takashi, or anyone else affected,

Accepted python-os-brick into train-proposed. The package will build now and be available in the Ubuntu Cloud Archive in a few hours, and then in the -proposed repository.

Please help us by testing this new package. To enable the -proposed repository:

  sudo add-apt-repository cloud-archive:train-proposed
  sudo apt-get update

Your feedback will aid us getting this update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, and change the tag from verification-train-needed to verification-train-done. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-train-failed. In either case, details of your testing will help us make a better decision.

Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance!

tags: added: verification-train-needed
Revision history for this message
Brett Milford (brettmilford) wrote :

Hi Corey,

I've tested python-os-brick package 2.8.1-0ubuntu1~cloud0.2 from cloud-archive:stein-proposed as per the Test Case and can confirm this fixes the issue for me.

tags: added: verification-stein-done
removed: verification-stein-needed
Revision history for this message
Mauricio Faria de Oliveira (mfo) wrote :

Hey Brett,

Thanks for testing on stein!

Would it be possible for you to test other/newer releases as well?

I'm asking because fixes for older releases have to land on newer releases as well, if applicable, which needs verification too, but it seems testing for this bug is on short supply; so if you're still running hot with it, that would be great, if at all possible.

And I'd imagine that releases on UCA that still have an Ubuntu release supported (e.g., ussuri -> focal) depend on the fix landing on the Ubuntu release as well.

(Sorry, I know it's a lot to ask; don't shoot the messenger :) just trying to get this fix released, and I realize it's been sitting/waiting on testing for a long while, until you showed up! ;)

Thanks!
Mauricio

P.S.: if that helps, it looks like Train isn't needed/supported anymore [1], unless the fix is required for upgrades.

[1] https://ubuntu.com/about/release-cycle#ubuntu-openstack-release-cycle

Revision history for this message
Brett Milford (brettmilford) wrote :

Hi Mauricio,

I intend to get there, this was just the first one I had ready to go :) I'll update shortly.

Revision history for this message
Brett Milford (brettmilford) wrote :

Hi Corey,

I've tested python-os-brick package 4.0.1-0ubuntu1~cloud1 from cloud-archive:victoria-proposed as per the Test Case and can confirm this fixes the issue for me.

tags: added: verification-victoria-done
removed: verification-victoria-needed
Revision history for this message
Mauricio Faria de Oliveira (mfo) wrote :

Hey Brett, awesome! Thanks a bunch :)

Revision history for this message
Brett Milford (brettmilford) wrote :

I've tested python-os-brick package 3.0.1-0ubuntu1.4~cloud0 from cloud-archive:ussuri-proposed as per the Test Case and can confirm this fixes the issue for me.

Revision history for this message
Brett Milford (brettmilford) wrote :

I've tested python-os-brick package 2.10.0-0ubuntu1~cloud0.2 from cloud-archive:train-proposed as per the Test Case and can confirm this fixes the issue for me.

Revision history for this message
Brett Milford (brettmilford) wrote :

I've tested python-os-brick package 3.0.1-0ubuntu1.4 from focal proposed as per the Test Case and can confirm this fixes the issue for me.

tags: added: verification-done-focal verification-train-done verification-ussuri-done
removed: verification-needed-focal verification-train-needed verification-ussuri-needed
Revision history for this message
Brett Milford (brettmilford) wrote :

I've tested python-os-brick package 2.3.0-0ubuntu1.3 from bionic proposed as per the Test Case and can confirm this fixes the issue for me.

tags: added: verification-done verification-done-bionic
removed: verification-needed verification-needed-bionic
Revision history for this message
Corey Bryant (corey.bryant) wrote : Update Released

The verification of the Stable Release Update for python-os-brick has completed successfully and the package has now been released to -updates. In the event that you encounter a regression using the package from -updates please report a new bug using ubuntu-bug and tag the bug report regression-update so we can easily find any regressions.

Revision history for this message
Corey Bryant (corey.bryant) wrote :

This bug was fixed in the package python-os-brick - 4.0.1-0ubuntu1~cloud1
---------------

 python-os-brick (4.0.1-0ubuntu1~cloud1) focal-victoria; urgency=medium
 .
   [ Brett Milford ]
   * Avoid unhandled exceptions during connecting to iSCSI portals
     (LP: #1915678)
     - d/p/lp1915678-avoid-unhandled-exceptions-during-connecting-to-iscsi-portals.patch
 .
   [ Corey Bryant ]
   * d/gbp.conf: Create stable/victoria branch.
 .
   [ Chris MacNaughton ]
   * d/control: Update VCS paths for move to lp:~ubuntu-openstack-dev.

Revision history for this message
Launchpad Janitor (janitor) wrote :

This bug was fixed in the package python-os-brick - 3.0.1-0ubuntu1.4

---------------
python-os-brick (3.0.1-0ubuntu1.4) focal; urgency=medium

  [ Brett Milford ]
  * Avoid unhandled exceptions during connecting to iSCSI portals
    (LP: #1915678)
    - d/p/lp1915678-avoid-unhandled-exceptions-during-connecting-to-iscsi-portals.patch

  [ Chris MacNaughton ]
  * d/control: Update VCS paths for move to lp:~ubuntu-openstack-dev.

 -- Brett Milford <email address hidden> Fri, 05 Nov 2021 10:55:06 +1000

Changed in python-os-brick (Ubuntu Focal):
status: Fix Committed → Fix Released
Revision history for this message
Launchpad Janitor (janitor) wrote :

This bug was fixed in the package python-os-brick - 2.3.0-0ubuntu1.3

---------------
python-os-brick (2.3.0-0ubuntu1.3) bionic; urgency=medium

  [ Brett Milford ]
  * Avoid unhandled exceptions during connecting to iSCSI portals
    (LP: #1915678)
    - d/p/lp1915678-avoid-unhandled-exceptions-during-connecting-to-iscsi-portals.patch

  [ Chris MacNaughton ]
  * d/control: Update VCS paths for move to lp:~ubuntu-openstack-dev.

 -- Brett Milford <email address hidden> Fri, 05 Nov 2021 10:55:06 +1000

Changed in python-os-brick (Ubuntu Bionic):
status: Fix Committed → Fix Released
Revision history for this message
Corey Bryant (corey.bryant) wrote :

The verification of the Stable Release Update for python-os-brick has completed successfully and the package has now been released to -updates. In the event that you encounter a regression using the package from -updates please report a new bug using ubuntu-bug and tag the bug report regression-update so we can easily find any regressions.

Revision history for this message
Corey Bryant (corey.bryant) wrote :

This bug was fixed in the package python-os-brick - 3.0.1-0ubuntu1.4~cloud0
---------------

 python-os-brick (3.0.1-0ubuntu1.4~cloud0) bionic-ussuri; urgency=medium
 .
   * New update for the Ubuntu Cloud Archive.
 .
 python-os-brick (3.0.1-0ubuntu1.4) focal; urgency=medium
 .
   [ Brett Milford ]
   * Avoid unhandled exceptions during connecting to iSCSI portals
     (LP: #1915678)
     - d/p/lp1915678-avoid-unhandled-exceptions-during-connecting-to-iscsi-portals.patch
 .
   [ Chris MacNaughton ]
   * d/control: Update VCS paths for move to lp:~ubuntu-openstack-dev.

Revision history for this message
Corey Bryant (corey.bryant) wrote :

The verification of the Stable Release Update for python-os-brick has completed successfully and the package has now been released to -updates. In the event that you encounter a regression using the package from -updates please report a new bug using ubuntu-bug and tag the bug report regression-update so we can easily find any regressions.

Revision history for this message
Corey Bryant (corey.bryant) wrote :

This bug was fixed in the package python-os-brick - 2.10.0-0ubuntu1~cloud0.2
---------------

 python-os-brick (2.10.0-0ubuntu1~cloud0.2) bionic-train; urgency=medium
 .
   [ Brett Milford ]
   * Avoid unhandled exceptions during connecting to iSCSI portals
     (LP: #1915678)
     - d/p/lp1915678-avoid-unhandled-exceptions-during-connecting-to-iscsi-portals.patch
 .
   [ Chris MacNaughton ]
   * d/control: Update VCS paths for move to lp:~ubuntu-openstack-dev.

Revision history for this message
Corey Bryant (corey.bryant) wrote :

The verification of the Stable Release Update for python-os-brick has completed successfully and the package has now been released to -updates. In the event that you encounter a regression using the package from -updates please report a new bug using ubuntu-bug and tag the bug report regression-update so we can easily find any regressions.

Revision history for this message
Corey Bryant (corey.bryant) wrote :

This bug was fixed in the package python-os-brick - 2.8.1-0ubuntu1~cloud0.2
---------------

 python-os-brick (2.8.1-0ubuntu1~cloud0.2) bionic-stein; urgency=medium
 .
   [ Brett Milford ]
   * Avoid unhandled exceptions during connecting to iSCSI portals
     (LP: #1915678)
     - d/p/lp1915678-avoid-unhandled-exceptions-during-connecting-to-iscsi-portals.patch
 .
   [ Chris MacNaughton ]
   * d/control: Update VCS paths for move to lp:~ubuntu-openstack-dev.

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Change abandoned on os-brick (stable/stein)

Change abandoned by "Brian Rosmaita <email address hidden>" on branch: stable/stein
Review: https://review.opendev.org/c/openstack/os-brick/+/814840
Reason: Stein transitioned to End of Life by change Icf9a539a7b8b and is accepting no more changes.

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/os-brick train-eol

This issue was fixed in the openstack/os-brick train-eol release.

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.