Comment 6 for bug 1787106

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

Reviewed: https://review.openstack.org/593533
Committed: https://git.openstack.org/cgit/openstack/neutron/commit/?id=684ea3980135c59c6f5f74bca38f5abf71f1b4ea
Submitter: Zuul
Branch: stable/rocky

commit 684ea3980135c59c6f5f74bca38f5abf71f1b4ea
Author: Nguyen Phuong An <email address hidden>
Date: Wed Aug 15 13:09:38 2018 +0700

    Fix lost connection when create security group log

    Packet sent to table 91 are considered accepted by the egress pipeline
    and NORMAL action is used by default in this table. However, if we
    create a security group logging resource, then ovs flows log will be
    added into this table with higher priority. Therefore packet matches
    with ovs flows log will be sent to CONTROLLER and never forward.
    So this patch append action=NORMAL into ovs flows log to forward
    the packet and send it to CONTROLLER for logging.

    Closes-Bug: #1787106
    Change-Id: I6e95e2e646ec8a5507c7f140ab2c4a56be8404c3
    (cherry picked from commit 7d2ac2d0aff90d17d2e46aba2af3b4cc32d1833c)