mirror of
https://github.com/healthchecks/healthchecks.git
synced 2026-04-26 15:35:53 +03:00
[GH-ISSUE #1050] Gettin AttributeError on admin from latest master version #732
Labels
No labels
bug
bug
bug
feature
good-first-issue
new integration
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/healthchecks#732
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @spapas on GitHub (Aug 16, 2024).
Original GitHub issue: https://github.com/healthchecks/healthchecks/issues/1050
Hey friends, I updated to the latest version from master and getting:
AttributeError: Unable to lookup 'channel__kind' on Notification or NotificationsAdminThe commit is
d3ae4e7fac6b99a6211559f79740076fe9bfe08d.TIA
@cuu508 commented on GitHub (Aug 16, 2024):
Did you upgrade packages to versions listed in requirements.txt? In particular, are you running Django 5.1?
On Fri, Aug 16, 2024, at 11:07 PM, Serafeim Papastefanos wrote:
@spapas commented on GitHub (Aug 16, 2024):
Hello @cuu508 yes you are right I didn't have installed the requirements. It works now however I get another warning:
When running migrate I get:
Trying makemigrations dry run I get:
python manage.py makemigrations --dry-run
Migrations for 'api':
hc/api/migrations/0111_alter_channel_kind.py
~ Alter field kind on channel
Shouldn't that migration be already commited on the master ?
@cuu508 commented on GitHub (Aug 17, 2024):
It's related to this commit which removes a few obsolete channel kinds:
github.com/healthchecks/healthchecks@8054191be3You can safely ignore this warning.
@spapas commented on GitHub (Aug 17, 2024):
Excellent thank you!