fix: rm used config
This commit is contained in:
parent
73567f3570
commit
27e1692848
2 changed files with 0 additions and 3 deletions
|
|
@ -9,7 +9,6 @@ export class Keep extends Schema.Class<Keep>("ConfigV2.Compaction.Keep")({
|
||||||
|
|
||||||
export class Info extends Schema.Class<Info>("ConfigV2.Compaction")({
|
export class Info extends Schema.Class<Info>("ConfigV2.Compaction")({
|
||||||
auto: Schema.Boolean.pipe(Schema.optional),
|
auto: Schema.Boolean.pipe(Schema.optional),
|
||||||
prune: Schema.Boolean.pipe(Schema.optional),
|
|
||||||
keep: Keep.pipe(Schema.optional),
|
keep: Keep.pipe(Schema.optional),
|
||||||
buffer: NonNegativeInt.pipe(Schema.optional),
|
buffer: NonNegativeInt.pipe(Schema.optional),
|
||||||
}) {}
|
}) {}
|
||||||
|
|
|
||||||
|
|
@ -754,7 +754,6 @@ describe("Config", () => {
|
||||||
})
|
})
|
||||||
expect(documents[0]?.info.compaction).toEqual({
|
expect(documents[0]?.info.compaction).toEqual({
|
||||||
auto: true,
|
auto: true,
|
||||||
prune: false,
|
|
||||||
keep: { tokens: 2000 },
|
keep: { tokens: 2000 },
|
||||||
buffer: 10000,
|
buffer: 10000,
|
||||||
})
|
})
|
||||||
|
|
@ -968,7 +967,6 @@ describe("Config", () => {
|
||||||
})
|
})
|
||||||
expect(documents[0]?.info.compaction).toEqual({
|
expect(documents[0]?.info.compaction).toEqual({
|
||||||
auto: true,
|
auto: true,
|
||||||
prune: undefined,
|
|
||||||
keep: { tokens: 2000 },
|
keep: { tokens: 2000 },
|
||||||
buffer: 10000,
|
buffer: 10000,
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue