mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 08:19:40 +02:00
DB upgrade failes if bucket does not exists (#6608)
This commit is contained in:
parent
9f4549212d
commit
14ed6ed2a3
1 changed files with 3 additions and 0 deletions
|
@ -407,6 +407,9 @@ func (connection *DbConnection) RestoreMetadata(s map[string]interface{}) error
|
|||
|
||||
err = connection.Batch(func(tx *bolt.Tx) error {
|
||||
bucket := tx.Bucket([]byte(bucketName))
|
||||
if bucket == nil {
|
||||
return nil
|
||||
}
|
||||
return bucket.SetSequence(uint64(id))
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue