fix node expire error due to type in gorm model Update (#1692)

Fixes #1674

Signed-off-by: fortitude.zhang <fortitude.zhang@gmail.com>
This commit is contained in:
dyz 2024-01-22 00:38:24 +08:00 committed by GitHub
parent 1e22f17f36
commit a369d57a17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -900,7 +900,7 @@ func (hsdb *HSDatabase) ExpireExpiredNodes(lastCheck time.Time) time.Time {
// Do not use setNodeExpiry as that has a notifier hook, which
// can cause a deadlock, we are updating all changed nodes later
// and there is no point in notifiying twice.
if err := hsdb.db.Model(nodes[index]).Updates(types.Node{
if err := hsdb.db.Model(&nodes[index]).Updates(types.Node{
Expiry: &started,
}).Error; err != nil {
log.Error().