mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-07 16:33:08 +00:00
chore: not supporting legacy store by default (#3484)
This commit is contained in:
parent
cc30666016
commit
ac094eae38
@ -64,7 +64,7 @@ proc build*(b: StoreServiceConfBuilder): Result[Option[StoreServiceConf], string
|
|||||||
dbMigration: b.dbMigration.get(true),
|
dbMigration: b.dbMigration.get(true),
|
||||||
dbURl: b.dbUrl.get(),
|
dbURl: b.dbUrl.get(),
|
||||||
dbVacuum: b.dbVacuum.get(false),
|
dbVacuum: b.dbVacuum.get(false),
|
||||||
supportV2: b.supportV2.get(true),
|
supportV2: b.supportV2.get(false),
|
||||||
maxNumDbConnections: b.maxNumDbConnections.get(50),
|
maxNumDbConnections: b.maxNumDbConnections.get(50),
|
||||||
retentionPolicy: b.retentionPolicy.get("time:" & $2.days.seconds),
|
retentionPolicy: b.retentionPolicy.get("time:" & $2.days.seconds),
|
||||||
resume: b.resume.get(false),
|
resume: b.resume.get(false),
|
||||||
|
|||||||
@ -351,7 +351,7 @@ hence would have reachability issues.""",
|
|||||||
|
|
||||||
legacyStore* {.
|
legacyStore* {.
|
||||||
desc: "Enable/disable support of Waku Store v2 as a service",
|
desc: "Enable/disable support of Waku Store v2 as a service",
|
||||||
defaultValue: true,
|
defaultValue: false,
|
||||||
name: "legacy-store"
|
name: "legacy-store"
|
||||||
.}: bool
|
.}: bool
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user