Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
-
Has there been any development by anyone to resolve this? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
After updating the NetBox plugin to its latest version (netbox_topology_views version 4.2.0), the plugin no longer functions correctly. Specifically, clicking the "Search" button results in the following error:
`<class 'AttributeError'>
'CircuitTermination' object has no attribute 'provider_network'
`
Analysis
This issue appears to be caused by the removal of the provider_network field in NetBox version 4.2, as indicated in the release notes under the "Breaking Changes" section:
The site and provider_network foreign key fields on circuits.CircuitTermination have been replaced by the termination generic foreign key.
It seems the plugin is still referencing the provider_network field, which is no longer available in NetBox 4.2.
Steps to Reproduce
Update NetBox to version 4.2.1.
Update netbox_topology_views to version 4.2.0.
Open the plugin interface and attempt to perform a search using the "Search" button.
Observe the error.
Expected Behavior
The plugin should work seamlessly with NetBox version 4.2.1, with no errors when performing a search.
Actual Behavior
The plugin throws an AttributeError referencing the removed provider_network field.
Additional Information


NetBox version: 4.2.1
Plugin version: netbox_topology_views 4.2.0
Python version: 3.12.3
Other installed plugins: netbox_attachments, netbox_dns, netbox_reorder_rack.
Beta Was this translation helpful? Give feedback.
All reactions