OVN DB Sync always logs warning messages about updating all router ports

Bug #2030773 reported by Lucas Alvares Gomes
16
This bug affects 2 people
Affects Status Importance Assigned to Milestone
Ubuntu Cloud Archive
Fix Released
Undecided
Unassigned
Antelope
Fix Released
Medium
Unassigned
Ussuri
Fix Released
Medium
Unassigned
Victoria
Fix Released
Medium
Unassigned
Wallaby
Fix Committed
Medium
Unassigned
Xena
Fix Released
Medium
Unassigned
Yoga
Fix Released
Medium
Unassigned
Zed
Fix Released
Medium
Unassigned
neutron
Fix Released
Medium
Lucas Alvares Gomes
neutron (Ubuntu)
Fix Released
Undecided
Unassigned
Focal
Fix Released
Medium
Unassigned
Jammy
Fix Released
Medium
Unassigned
Lunar
Fix Released
Medium
Unassigned

Bug Description

Reported at: https://bugzilla.redhat.com/show_bug.cgi?id=2225156

The ovn-db-sync script does not check if the router ports are actually out-of-sync before adding it to the list of ports that needs to be updated, this can create red herring problems by introducing an irrelevant piece of information [0] in the sync report (specially when ran in "log" mode) making the user think that the databases might be out-of-sync even when it is not.

Looking at the code [1] we can see that the comment talks about checking the networks and ipv6_ra_configs changes but it does neither; instead, it adds every router port to the list of ports that needs to be updated.

<snipet>

# We dont have to check for the networks and
# ipv6_ra_configs values. Lets add it to the
# update_lrport_list. If they are in sync, then
# update_router_port will be a no-op.
update_lrport_list.append(db_router_ports[lrport])

</snipet>

This LP is about changing this behavior and checking for such differences in the router ports before marking them to be updated.

[0]
2023-07-24 11:46:31.391 952358 WARNING networking_ovn.ovn_db_sync [req-1081a8a6-82dd-431c-a2ab-f58741dc1677 - - - - -] Router Port port_id=f164c0f1-8ac8-4c45-bba9-8c723a30c701 needs to be updated for networks changed

[1]
https://github.com/openstack/neutron/blob/c453813d0664259c4da0d132f224be2eebe70072/neutron/plugins/ml2/drivers/ovn/mech_driver/ovsdb/ovn_db_sync.py#L553-L557

===== Ubuntu SRU Details =====

[Impact]
See bug description above.

[Test Case]
Deploy openstack with OVN and multiple routers. Run the ovn-db-sync script and ensure router ports that are not out of sync are not marked to be updated.

[Where problems could occur]
If the _is_router_port_changed() function had a bug there would be potential for ports to be filtered out that need updating. Presumably this is not the case, but that is a theoritical potential for where problems could occur. All of these patches have already landed in the corresponding upstream branches.

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to neutron (master)

Fix proposed to branch: master
Review: https://review.opendev.org/c/openstack/neutron/+/890799

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

Reviewed: https://review.opendev.org/c/openstack/neutron/+/890799
Committed: https://opendev.org/openstack/neutron/commit/4693836a1b58b477298e51cb47622222e3556752
Submitter: "Zuul (22348)"
Branch: master

commit 4693836a1b58b477298e51cb47622222e3556752
Author: Lucas Alvares Gomes <email address hidden>
Date: Tue Aug 8 15:17:40 2023 +0100

    [OVN] ovn-db-sync check for router port differences

    Prior to this patch the ovn-db-sync script did not check if the router
    ports were actually out-of-sync before marking them to be updated. This
    behavior introduced irrelevant information in the sync report (specially
    when ran in "log" mode) making the user think that the databases were
    out-of-sync even when they were not.

    This patch adds the code checking for differences in the Neutron Router
    Ports and OVN Logical Router Port entries prior to updating them.

    Change-Id: Id7bf5a6aa547795ba78724eed59ba9d4fb74f758
    Closes-Bug: #2030773
    Signed-off-by: Lucas Alvares Gomes <email address hidden>

Changed in neutron:
status: In Progress → Fix Released
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to neutron (stable/2023.1)

Fix proposed to branch: stable/2023.1
Review: https://review.opendev.org/c/openstack/neutron/+/891501

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

Fix proposed to branch: stable/zed
Review: https://review.opendev.org/c/openstack/neutron/+/891502

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

Fix proposed to branch: stable/yoga
Review: https://review.opendev.org/c/openstack/neutron/+/891503

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

Fix proposed to branch: stable/xena
Review: https://review.opendev.org/c/openstack/neutron/+/891504

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

Fix proposed to branch: stable/wallaby
Review: https://review.opendev.org/c/openstack/neutron/+/891506

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

Fix proposed to branch: stable/victoria
Review: https://review.opendev.org/c/openstack/neutron/+/892182

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

Fix proposed to branch: stable/ussuri
Review: https://review.opendev.org/c/openstack/neutron/+/892183

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

Reviewed: https://review.opendev.org/c/openstack/neutron/+/891501
Committed: https://opendev.org/openstack/neutron/commit/04541b07209ce56fdd7dd052eae458e11666d9c0
Submitter: "Zuul (22348)"
Branch: stable/2023.1

commit 04541b07209ce56fdd7dd052eae458e11666d9c0
Author: Lucas Alvares Gomes <email address hidden>
Date: Tue Aug 8 15:17:40 2023 +0100

    [OVN] ovn-db-sync check for router port differences

    Prior to this patch the ovn-db-sync script did not check if the router
    ports were actually out-of-sync before marking them to be updated. This
    behavior introduced irrelevant information in the sync report (specially
    when ran in "log" mode) making the user think that the databases were
    out-of-sync even when they were not.

    This patch adds the code checking for differences in the Neutron Router
    Ports and OVN Logical Router Port entries prior to updating them.

    Conflicts:
      neutron/tests/unit/fake_resources.py

    Change-Id: Id7bf5a6aa547795ba78724eed59ba9d4fb74f758
    Closes-Bug: #2030773
    Signed-off-by: Lucas Alvares Gomes <email address hidden>
    (cherry picked from commit 4693836a1b58b477298e51cb47622222e3556752)

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

Reviewed: https://review.opendev.org/c/openstack/neutron/+/891502
Committed: https://opendev.org/openstack/neutron/commit/bc71377ba7f8c99910565969a462c3bd5b8b4379
Submitter: "Zuul (22348)"
Branch: stable/zed

commit bc71377ba7f8c99910565969a462c3bd5b8b4379
Author: Lucas Alvares Gomes <email address hidden>
Date: Tue Aug 8 15:17:40 2023 +0100

    [OVN] ovn-db-sync check for router port differences

    Prior to this patch the ovn-db-sync script did not check if the router
    ports were actually out-of-sync before marking them to be updated. This
    behavior introduced irrelevant information in the sync report (specially
    when ran in "log" mode) making the user think that the databases were
    out-of-sync even when they were not.

    This patch adds the code checking for differences in the Neutron Router
    Ports and OVN Logical Router Port entries prior to updating them.

    Conflicts:
      neutron/tests/unit/fake_resources.py

    Change-Id: Id7bf5a6aa547795ba78724eed59ba9d4fb74f758
    Closes-Bug: #2030773
    Signed-off-by: Lucas Alvares Gomes <email address hidden>
    (cherry picked from commit 4693836a1b58b477298e51cb47622222e3556752)

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

Reviewed: https://review.opendev.org/c/openstack/neutron/+/891503
Committed: https://opendev.org/openstack/neutron/commit/b288a1264a07d9590f2280d3cd7476b8117b94b2
Submitter: "Zuul (22348)"
Branch: stable/yoga

commit b288a1264a07d9590f2280d3cd7476b8117b94b2
Author: Lucas Alvares Gomes <email address hidden>
Date: Tue Aug 8 15:17:40 2023 +0100

    [OVN] ovn-db-sync check for router port differences

    Prior to this patch the ovn-db-sync script did not check if the router
    ports were actually out-of-sync before marking them to be updated. This
    behavior introduced irrelevant information in the sync report (specially
    when ran in "log" mode) making the user think that the databases were
    out-of-sync even when they were not.

    This patch adds the code checking for differences in the Neutron Router
    Ports and OVN Logical Router Port entries prior to updating them.

    Conflicts:
      neutron/tests/unit/fake_resources.py

    Change-Id: Id7bf5a6aa547795ba78724eed59ba9d4fb74f758
    Closes-Bug: #2030773
    Signed-off-by: Lucas Alvares Gomes <email address hidden>
    (cherry picked from commit 4693836a1b58b477298e51cb47622222e3556752)

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

Reviewed: https://review.opendev.org/c/openstack/neutron/+/891504
Committed: https://opendev.org/openstack/neutron/commit/518751eed355846ee74015d86b08e626928bb962
Submitter: "Zuul (22348)"
Branch: stable/xena

commit 518751eed355846ee74015d86b08e626928bb962
Author: Lucas Alvares Gomes <email address hidden>
Date: Tue Aug 8 15:17:40 2023 +0100

    [OVN] ovn-db-sync check for router port differences

    Prior to this patch the ovn-db-sync script did not check if the router
    ports were actually out-of-sync before marking them to be updated. This
    behavior introduced irrelevant information in the sync report (specially
    when ran in "log" mode) making the user think that the databases were
    out-of-sync even when they were not.

    This patch adds the code checking for differences in the Neutron Router
    Ports and OVN Logical Router Port entries prior to updating them.

    NOTE FOR THIS BACKPORT:

    The lrp_get() method from ovsdbapp is not present for this stable
    branch, so this patch was adapted to use the get_lrouter_port()
    instead.

    Conflicts:
      neutron/tests/unit/fake_resources.py

    Change-Id: Id7bf5a6aa547795ba78724eed59ba9d4fb74f758
    Closes-Bug: #2030773
    Signed-off-by: Lucas Alvares Gomes <email address hidden>
    (cherry picked from commit 4693836a1b58b477298e51cb47622222e3556752)

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

Reviewed: https://review.opendev.org/c/openstack/neutron/+/891506
Committed: https://opendev.org/openstack/neutron/commit/1d2a8a679637a72b8171cd276c009766242e14c6
Submitter: "Zuul (22348)"
Branch: stable/wallaby

commit 1d2a8a679637a72b8171cd276c009766242e14c6
Author: Lucas Alvares Gomes <email address hidden>
Date: Tue Aug 8 15:17:40 2023 +0100

    [OVN] ovn-db-sync check for router port differences

    Prior to this patch the ovn-db-sync script did not check if the router
    ports were actually out-of-sync before marking them to be updated. This
    behavior introduced irrelevant information in the sync report (specially
    when ran in "log" mode) making the user think that the databases were
    out-of-sync even when they were not.

    This patch adds the code checking for differences in the Neutron Router
    Ports and OVN Logical Router Port entries prior to updating them.

    NOTE FOR THIS BACKPORT:

    The lrp_get() method from ovsdbapp is not present for this stable
    branch, so this patch was adapted to use the get_lrouter_port()
    instead.

    Conflicts:
      neutron/tests/unit/fake_resources.py

    Change-Id: Id7bf5a6aa547795ba78724eed59ba9d4fb74f758
    Closes-Bug: #2030773
    Signed-off-by: Lucas Alvares Gomes <email address hidden>
    (cherry picked from commit 4693836a1b58b477298e51cb47622222e3556752)

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

Reviewed: https://review.opendev.org/c/openstack/neutron/+/892182
Committed: https://opendev.org/openstack/neutron/commit/8d45ee7f34f339c683c03f5391800b9848aaf11e
Submitter: "Zuul (22348)"
Branch: stable/victoria

commit 8d45ee7f34f339c683c03f5391800b9848aaf11e
Author: Lucas Alvares Gomes <email address hidden>
Date: Tue Aug 8 15:17:40 2023 +0100

    [OVN] ovn-db-sync check for router port differences

    Prior to this patch the ovn-db-sync script did not check if the router
    ports were actually out-of-sync before marking them to be updated. This
    behavior introduced irrelevant information in the sync report (specially
    when ran in "log" mode) making the user think that the databases were
    out-of-sync even when they were not.

    This patch adds the code checking for differences in the Neutron Router
    Ports and OVN Logical Router Port entries prior to updating them.

    NOTE FOR THIS BACKPORT:

    The lrp_get() method from ovsdbapp is not present for this stable
    branch, so this patch was adapted to use the get_lrouter_port()
    instead.

    Conflicts:
      neutron/tests/unit/fake_resources.py

    Change-Id: Id7bf5a6aa547795ba78724eed59ba9d4fb74f758
    Closes-Bug: #2030773
    Signed-off-by: Lucas Alvares Gomes <email address hidden>
    (cherry picked from commit 4693836a1b58b477298e51cb47622222e3556752)

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

Reviewed: https://review.opendev.org/c/openstack/neutron/+/892183
Committed: https://opendev.org/openstack/neutron/commit/6af6771deb66b75f0189733771e9cc288d6139ed
Submitter: "Zuul (22348)"
Branch: stable/ussuri

commit 6af6771deb66b75f0189733771e9cc288d6139ed
Author: Lucas Alvares Gomes <email address hidden>
Date: Tue Aug 8 15:17:40 2023 +0100

    [OVN] ovn-db-sync check for router port differences

    Prior to this patch the ovn-db-sync script did not check if the router
    ports were actually out-of-sync before marking them to be updated. This
    behavior introduced irrelevant information in the sync report (specially
    when ran in "log" mode) making the user think that the databases were
    out-of-sync even when they were not.

    This patch adds the code checking for differences in the Neutron Router
    Ports and OVN Logical Router Port entries prior to updating them.

    NOTE FOR THIS BACKPORT:

    The lrp_get() method from ovsdbapp is not present for this stable
    branch, so this patch was adapted to use the get_lrouter_port()
    instead.

    Conflicts:
      neutron/plugins/ml2/drivers/ovn/mech_driver/ovsdb/ovn_db_sync.py
      neutron/tests/unit/fake_resources.py

    Change-Id: Id7bf5a6aa547795ba78724eed59ba9d4fb74f758
    Closes-Bug: #2030773
    Signed-off-by: Lucas Alvares Gomes <email address hidden>
    (cherry picked from commit 4693836a1b58b477298e51cb47622222e3556752)

tags: added: in-stable-ussuri
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/neutron 23.0.0.0b3

This issue was fixed in the openstack/neutron 23.0.0.0b3 development milestone.

Changed in neutron (Ubuntu):
status: New → Fix Released
Changed in neutron (Ubuntu Lunar):
status: New → Triaged
importance: Undecided → Medium
Changed in neutron (Ubuntu Jammy):
status: New → Triaged
importance: Undecided → Medium
Changed in cloud-archive:
status: New → Fix Released
Changed in neutron (Ubuntu Focal):
importance: Undecided → Medium
status: New → Triaged
description: updated
description: updated
description: updated
Revision history for this message
Corey Bryant (corey.bryant) wrote :

This will be fixed in stable point releases for yoga and above in ubuntu. https://review.opendev.org/c/openstack/releases/+/901058

For earlier releases we will pick up the individual patches.

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/neutron 22.1.0

This issue was fixed in the openstack/neutron 22.1.0 release.

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/neutron 20.5.0

This issue was fixed in the openstack/neutron 20.5.0 release.

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/neutron 21.2.0

This issue was fixed in the openstack/neutron 21.2.0 release.

Changed in neutron (Ubuntu Lunar):
status: Triaged → Fix Released
Changed in neutron (Ubuntu Jammy):
status: Triaged → Fix Released
Revision history for this message
Corey Bryant (corey.bryant) wrote :

A new package version with this fix has been uploaded to the focal unapproved queue and victoria/wallaby/xena staging PPAs.

Revision history for this message
Andreas Hasenack (ahasenack) wrote : Please test proposed package

Hello Lucas, or anyone else affected,

Accepted neutron into focal-proposed. The package will build now and be available at https://launchpad.net/ubuntu/+source/neutron/2:16.4.2-0ubuntu6.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 neutron (Ubuntu Focal):
status: Triaged → Fix Committed
tags: added: verification-needed verification-needed-focal
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/neutron ussuri-eol

This issue was fixed in the openstack/neutron ussuri-eol release.

Revision history for this message
Brian Haley (brian-haley) wrote :

Verified this was fixed on a juju-deployed focal/ussuri cloud, no warnings about router ports where with previous 6.3 version there was.

tags: added: verification-done-focal
removed: verification-needed verification-needed-focal
tags: added: verification-done
Revision history for this message
Chris Halse Rogers (raof) wrote : Update Released

The verification of the Stable Release Update for neutron has completed successfully and the package is now being released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. 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
Launchpad Janitor (janitor) wrote :

This bug was fixed in the package neutron - 2:16.4.2-0ubuntu6.4

---------------
neutron (2:16.4.2-0ubuntu6.4) focal; urgency=medium

  [ Corey Bryant ]
  * d/p/ovn-db-sync-continue-on-duplicate-normalise.patch: Cherry-picked
    from upstream to allow ovn_db_sync to continue on duplicate normalised
    CIDR (LP: #1961112).
  * d/p/ovn-db-sync-check-for-router-port-differences.patch:
    Cherry-picked from upstream to ensure router ports are marked
    for needing updates only if they have changed (LP: #2030773).
  * d/p/ovn-specify-port-type-if-router-port-when-updating.patch:
    Specify port type if it's a router port when updating to avoid
    port flapping (LP: #1955578).
  * d/p/fix-acl-sync-when-default-sg-group-created.patch:
    Cherry-picked form upstream to fix ACL sync when default security
    group is created (LP: #2008943).

  [ Mustafa Kemal GILOR ]
  * d/p/add_uplink_status_propagation.patch: Add the
    'uplink-status-propagation' extension to ML2/OVN (LP: #2032770).

 -- Corey Bryant <email address hidden> Wed, 08 Nov 2023 11:41:21 -0500

Changed in neutron (Ubuntu Focal):
status: Fix Committed → Fix Released
Revision history for this message
James Page (james-page) wrote : Please test proposed package

Hello Lucas, or anyone else affected,

Accepted neutron 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
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/neutron victoria-eom

This issue was fixed in the openstack/neutron victoria-eom release.

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/neutron wallaby-eom

This issue was fixed in the openstack/neutron wallaby-eom release.

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix included in openstack/neutron xena-eom

This issue was fixed in the openstack/neutron xena-eom release.

Revision history for this message
Brian Haley (brian-haley) wrote :

I have tested neutron version 2:16.4.2-0ubuntu6.4~cloud0 from the cloud-archive:ussuri-proposed repository and can verify the code has this change, and the failure does not occur. I followed the steps from the bug description:

neutron-ovn-db-sync-util --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/ml2_conf.ini --ovn-neutron_sync_mode log

Running that multiple times did not produce out for out of sync ports as is used to.

tags: added: verification-ussuri-done
removed: verification-ussuri-needed
Revision history for this message
James Page (james-page) wrote : Update Released

The verification of the Stable Release Update for neutron 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
James Page (james-page) wrote :

This bug was fixed in the package neutron - 2:16.4.2-0ubuntu6.4~cloud0
---------------

 neutron (2:16.4.2-0ubuntu6.4~cloud0) bionic-ussuri; urgency=medium
 .
   * New update for the Ubuntu Cloud Archive.
 .
 neutron (2:16.4.2-0ubuntu6.4) focal; urgency=medium
 .
   [ Corey Bryant ]
   * d/p/ovn-db-sync-continue-on-duplicate-normalise.patch: Cherry-picked
     from upstream to allow ovn_db_sync to continue on duplicate normalised
     CIDR (LP: #1961112).
   * d/p/ovn-db-sync-check-for-router-port-differences.patch:
     Cherry-picked from upstream to ensure router ports are marked
     for needing updates only if they have changed (LP: #2030773).
   * d/p/ovn-specify-port-type-if-router-port-when-updating.patch:
     Specify port type if it's a router port when updating to avoid
     port flapping (LP: #1955578).
   * d/p/fix-acl-sync-when-default-sg-group-created.patch:
     Cherry-picked form upstream to fix ACL sync when default security
     group is created (LP: #2008943).
 .
   [ Mustafa Kemal GILOR ]
   * d/p/add_uplink_status_propagation.patch: Add the
     'uplink-status-propagation' extension to ML2/OVN (LP: #2032770).

Revision history for this message
James Page (james-page) wrote : Please test proposed package

Hello Lucas, or anyone else affected,

Accepted neutron into wallaby-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:wallaby-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-wallaby-needed to verification-wallaby-done. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-wallaby-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-wallaby-needed
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.