1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #11154: Index VM interface MAC address and MTU for global search

This commit is contained in:
jeremystretch
2022-12-12 10:43:48 -05:00
parent 2ad1db0c64
commit 8809fc949b
2 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,7 @@
* [#10984](https://github.com/netbox-community/netbox/issues/10984) - Fix navigation menu expansion for plugin menus comprising multiple words
* [#11000](https://github.com/netbox-community/netbox/issues/11000) - Improve validation of YAML-formatted import data
* [#11046](https://github.com/netbox-community/netbox/issues/11046) - Fix exception when caching very large field values for search
* [#11154](https://github.com/netbox-community/netbox/issues/11154) - Index VM interface MAC address and MTU for global search
## v3.4-beta1 (2022-11-16)

View File

@ -47,5 +47,7 @@ class VMInterfaceIndex(SearchIndex):
model = models.VMInterface
fields = (
('name', 100),
('mac_address', 300),
('description', 500),
('mtu', 2000),
)