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 2aa90105d3
commit 4b2cdfee72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

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
}