← Back to team overview

yahoo-eng-team team mailing list archive

[Bug 1680161] [NEW] FWaaS - filtering idoesn't work correctly

 

Public bug reported:

In FWaaS v2, when firewall-policy tries to update public from True to False,
following validation expect to work:

  1. Get firewall group object which includes the firewall-policy as
     'ingress_firewall_policy_id' or 'egress_firewall_policy_id'
  2. Verify whether the firewall-group belongs same project or not

Currently, filter is wrong.  Therefore, it should be fixed:
However, this bug doesn't occur because following bug hasn't fixed yet so it's not urgent bug:

    https://bugs.launchpad.net/neutron/+bug/1657190

  Before:

    filters = {
        'ingress_firewall_rule_id': [fwp_id],
        'ingress_firewall_rule_id': [fwp_id]
    }

  After:

    filters = {
        'ingress_firewall_rule_id': [fwp_id],
        'ingress_firewall_rule_id': [fwp_id]
    }

** Affects: neutron
     Importance: Undecided
     Assignee: Yushiro FURUKAWA (y-furukawa-2)
         Status: In Progress


** Tags: fwaas

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to neutron.
https://bugs.launchpad.net/bugs/1680161

Title:
  FWaaS - filtering idoesn't work correctly

Status in neutron:
  In Progress

Bug description:
  In FWaaS v2, when firewall-policy tries to update public from True to False,
  following validation expect to work:

    1. Get firewall group object which includes the firewall-policy as
       'ingress_firewall_policy_id' or 'egress_firewall_policy_id'
    2. Verify whether the firewall-group belongs same project or not

  Currently, filter is wrong.  Therefore, it should be fixed:
  However, this bug doesn't occur because following bug hasn't fixed yet so it's not urgent bug:

      https://bugs.launchpad.net/neutron/+bug/1657190

    Before:

      filters = {
          'ingress_firewall_rule_id': [fwp_id],
          'ingress_firewall_rule_id': [fwp_id]
      }

    After:

      filters = {
          'ingress_firewall_rule_id': [fwp_id],
          'ingress_firewall_rule_id': [fwp_id]
      }

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1680161/+subscriptions


Follow ups