re-enable seal migration (#9351)

Co-authored-by: Vishal Nayak <vishalnayak@users.noreply.github.com>
This commit is contained in:
Mike Jarmy 2020-06-30 18:21:18 -04:00 committed by GitHub
parent 65dd5cfd27
commit be0950c433
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -955,6 +955,11 @@ func NewCore(conf *CoreConfig) (*Core, error) {
return nil, err
}
err = c.adjustForSealMigration(conf.UnwrapSeal)
if err != nil {
return nil, err
}
return c, nil
}