diff --git a/docs/release-notes/version-2.7.md b/docs/release-notes/version-2.7.md index 0e58a466d..cedff6b13 100644 --- a/docs/release-notes/version-2.7.md +++ b/docs/release-notes/version-2.7.md @@ -1,7 +1,8 @@ # v2.7.1 (FUTURE) -# Bug Fixes +## Bug Fixes +* [#3941](https://github.com/netbox-community/netbox/issues/3941) - Fixed exception when attempting to assign IP to interface * [#3944](https://github.com/netbox-community/netbox/issues/3944) - Fix AttributeError exception when viewing prefixes list --- @@ -180,7 +181,7 @@ REDIS = { 'SSL': False, } } -``` +``` Note that the `CACHE_DATABASE` parameter has been removed and the connection settings have been duplicated for both `webhooks` and `caching`. This allows the user to make use of separate Redis instances if desired. It is fine to use the diff --git a/netbox/ipam/views.py b/netbox/ipam/views.py index 1460df66f..5cbd55bf4 100644 --- a/netbox/ipam/views.py +++ b/netbox/ipam/views.py @@ -760,7 +760,7 @@ class IPAddressAssignView(PermissionRequiredMixin, View): 'vrf', 'tenant', 'interface__device', 'interface__virtual_machine' ) # Limit to 100 results - addresses = filters.IPAddressFilter(request.POST, addresses).qs[:100] + addresses = filters.IPAddressFilterSet(request.POST, addresses).qs[:100] table = tables.IPAddressAssignTable(addresses) return render(request, 'ipam/ipaddress_assign.html', {