uncomment Rebase

This commit is contained in:
Andy Arthur
2021-11-15 11:54:07 -08:00
parent 091c9f9988
commit 879105d1c5

View File

@@ -1154,8 +1154,7 @@ func (ddb *DoltDB) DeleteWorkspace(ctx context.Context, workRef ref.DoltRef) err
// Rebase rebases the underlying db from disk, re-loading the manifest. Useful when another process might have made
// changes to the database we need to read.
func (ddb *DoltDB) Rebase(ctx context.Context) error {
//return ddb.db.Rebase(ctx)
return nil
return ddb.db.Rebase(ctx)
}
// GC performs garbage collection on this ddb. Values passed in |uncommitedVals| will be temporarily saved during gc.