Skip to content

Commit

Permalink
switch the default back to ice v1 (#124)
Browse files Browse the repository at this point in the history
ice v2 has several issues at the moment, we should not default
to using it at this time
  • Loading branch information
mschoch authored Jul 4, 2022
1 parent 20a8f50 commit 5741419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ func DefaultConfigWithDirectory(df func() Directory) Config {

func defaultConfig() Config {
rv := Config{
SegmentType: iceV2.Type,
SegmentVersion: iceV2.Version,
SegmentType: iceV1.Type,
SegmentVersion: iceV1.Version,
MergePlanOptions: mergeplan.DefaultMergePlanOptions,
DeletionPolicyFunc: func() DeletionPolicy {
return NewKeepNLatestDeletionPolicy(1)
Expand Down

0 comments on commit 5741419

Please sign in to comment.