Merge branch 'zachmu/index-bugs' of github.com:dolthub/dolt into zachmu/index-bugs

This commit is contained in:
Zach Musgrave
2022-03-21 16:51:10 -07:00

View File

@@ -337,13 +337,13 @@ func FetchFollowTags(ctx context.Context, tempTableDir string, srcDB, destDB *do
// FetchRemoteBranch fetches and returns the |Commit| corresponding to the remote ref given. Returns an error if the
// remote reference doesn't exist or can't be fetched. Blocks until the fetch is complete.
func FetchRemoteBranch(
ctx context.Context,
tempTablesDir string,
rem env.Remote,
srcDB, destDB *doltdb.DoltDB,
srcRef ref.DoltRef,
progStarter ProgStarter,
progStopper ProgStopper,
ctx context.Context,
tempTablesDir string,
rem env.Remote,
srcDB, destDB *doltdb.DoltDB,
srcRef ref.DoltRef,
progStarter ProgStarter,
progStopper ProgStopper,
) (*doltdb.Commit, error) {
evt := events.GetEventFromContext(ctx)