DB upgrade failes if bucket does not exists (#6608)

pull/6611/head
Prabhat Khera 3 years ago committed by GitHub
parent 9f4549212d
commit 14ed6ed2a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save