Cannot view user profiles after upgrade to v4.3.1 #19546
-
Hello, Since upgrading to v4.3.1 I can no longer see user profiles and just get the error below when clicking on, for example https://netbox.internal.lan/users/users/14/ but it worked perfectly on v4.3.0 The data reads from the API fine. I have gone back to an old version of the database from 2024-01-01 (v3.3.10) and gone through the update stages to v4.3.1 and it works as expected so it's not an outright bug in netbox but I guess there is something in my current database that it doesn't like, so I can't give instructions to reproduce the error which is why I am using this discussion and not a bug report. NetBox release NetBox Community v4.3.1 (2025-05-13) Ubuntu 24.04.2 LTS, upgraded from 20.04. I guess my next step is to try different database backups to see when it stops working and see what changed but would appreciate any help that anyone can give me. EDIT: I've gone over a lot of backups of the database, I've got to the point where I've found one days database works and the next days doesn't, in the changelog a few things were deleted and 3 switches with 48 ports each were added, I've tied deleting the added items from v4.3.0 before updating to 4.3.1 but it made no difference. I've started looking over the differences in the database dumps but have no idea what I'm looking for. Once again, any suggestions are welcome (and needed at this point). UPDATE: Logged in as another user and everything works fine on v4.3.1, created another user, that works fine too, my user account still errors. So something happened to the database between my 2025-05-14 and 2025-05-15 backup that causes the above error where my user account can view user profiles on v4.3.0 but can't after upgrading to v4.3.1 but other user accounts work fine. Any suggestions on how to fix it other than just using a new account? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I have also encountered this problem, it is most likely a bug introduced in recent release. I opened this issue, which also explains why it happens. It can be fixed by editing netbox/account/views.py and removing the line |
Beta Was this translation helpful? Give feedback.
Confirmed working for me after commenting out the line
changelog_table.configure(request)
in both files;netbox/account/views.py
line 200netbox/users/views.py
line 80