-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
virtual-chassis position zero #7564
Labels
status: accepted
This issue has been accepted for implementation
type: bug
A confirmed report of unexpected behavior in the application
Comments
PieterL75
added
the
type: bug
A confirmed report of unexpected behavior in the application
label
Oct 18, 2021
First issue seems to be related to this : netbox/netbox/dcim/forms/object_create.py Line 125 in 16f5e23
This will cause 'initial_position' to become '1' if the get('initial_position') equals to {int}0 a=0 b=a or 1 b becomes 1 It can be fixed with initial_position = self.cleaned_data.get('initial_position') if initial_position != None else 1
The second can be solved with this :
Change that to 'value': str(value),
|
What NOS allows a position of "0" for a virtual chassis? |
DanSheps
added
the
status: under review
Further discussion is needed to determine this issue's scope and/or implementation
label
Oct 18, 2021
Junos has 0 for the first chassis id..
Ex
https://www.juniper.net/documentation/us/en/software/junos/virtual-chassis-mx/topics/ref/command/show-virtual-chassis-status-mx-series.html
Pieter
Op ma 18 okt. 2021 22:43 schreef Daniel Sheppard ***@***.***>:
… What NOS allows a position of "0" for a virtual chassis?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#7564 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AR3OADAIFQBHWIZ6BYYHPYLUHSBIPANCNFSM5GGQOYKA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
DanSheps
added
status: needs owner
This issue is tentatively accepted pending a volunteer committed to its implementation
and removed
status: under review
Further discussion is needed to determine this issue's scope and/or implementation
labels
Oct 19, 2021
You can assign it to me.. |
DanSheps
added
status: accepted
This issue has been accepted for implementation
and removed
status: needs owner
This issue is tentatively accepted pending a volunteer committed to its implementation
labels
Oct 19, 2021
Argh. Fixed in 3cb8c5d but I typoed the commit message. |
Merged
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
status: accepted
This issue has been accepted for implementation
type: bug
A confirmed report of unexpected behavior in the application
NetBox version
v3.0.7
Python version
3.7
Steps to Reproduce
Next one, also related
Expected Behavior
A new VC is created with 2 members. with position 0 en 1.
The GUI shows the 0 and 1 position in a gray box
Observed Behavior
The members are created with position 1 and 2.
After correcting: The position 0 is not displayed
The text was updated successfully, but these errors were encountered: