Bug #19991
Interface responds to `network` but not to `network6`
Pull request:
Fixed in Releases:
Found in Releases:
Description
The Nic class has a method network
which is delegated to subnet
, but no method network6
(which should be fetched from subnet6
. This is no breaking bug, but rather inconsistent.
Associated revisions
History
#1
Updated by The Foreman Bot about 5 years ago
- Status changed from New to Ready For Testing
- Pull request https://github.com/theforeman/foreman/pull/4582 added
#2
Updated by Jo Vandeginste about 5 years ago
- Status changed from Ready For Testing to Closed
- % Done changed from 0 to 100
Applied in changeset dd4c1274f585f45748b15eb84e640d5bf925e9e5.
#3
Updated by Marek Hulán about 5 years ago
- Legacy Backlogs Release (now unused) set to 240
Fixes #19991 - Add network6 to nic model
This adds the method `network6`, delegated to the `subnet6` relation.
Because the `delegate` methods does not support completely renaming a
method, I use a combination of delegate and alias. I updated the
definition for `network` (the v4 equivalent) to be consistent.