chore: not supporting legacy store by default (#3484)

This commit is contained in:
gabrielmer 2025-07-02 17:22:51 +02:00 committed by GitHub
parent cc30666016
commit ac094eae38
2 changed files with 2 additions and 2 deletions

View File

@ -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),

View File

@ -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