mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-02 14:03:06 +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),
|
||||
dbURl: b.dbUrl.get(),
|
||||
dbVacuum: b.dbVacuum.get(false),
|
||||
supportV2: b.supportV2.get(true),
|
||||
supportV2: b.supportV2.get(false),
|
||||
maxNumDbConnections: b.maxNumDbConnections.get(50),
|
||||
retentionPolicy: b.retentionPolicy.get("time:" & $2.days.seconds),
|
||||
resume: b.resume.get(false),
|
||||
|
||||
@ -351,7 +351,7 @@ hence would have reachability issues.""",
|
||||
|
||||
legacyStore* {.
|
||||
desc: "Enable/disable support of Waku Store v2 as a service",
|
||||
defaultValue: true,
|
||||
defaultValue: false,
|
||||
name: "legacy-store"
|
||||
.}: bool
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user