From 61783dba19c5128a3f83c2f1c016bef4c4333587 Mon Sep 17 00:00:00 2001 From: Marcin Czenko Date: Wed, 25 Jun 2025 13:16:22 +0200 Subject: [PATCH] enables "withLogFile" for repair from remote store only integration test --- .../integration/30_minutes/testslotrepair.nim | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/tests/integration/30_minutes/testslotrepair.nim b/tests/integration/30_minutes/testslotrepair.nim index f7d8dba7..fa070cb2 100644 --- a/tests/integration/30_minutes/testslotrepair.nim +++ b/tests/integration/30_minutes/testslotrepair.nim @@ -162,15 +162,17 @@ marketplacesuite(name = "SP Slot Repair", stopOnRequestFail = true): test "repair from local and remote store", NodeConfigs( - clients: CodexConfigs.init(nodes = 1) - # .debug() - # .withLogTopics("node", "erasure") - .some, - providers: CodexConfigs.init(nodes = 3) - # .debug() - # .withLogFile() - # .withLogTopics("marketplace", "sales", "statemachine", "reservations") - .some, + clients: CodexConfigs + .init(nodes = 1) + # .debug() + # .withLogTopics("node", "erasure") + .withLogFile().some, + providers: CodexConfigs + .init(nodes = 3) + # .debug() + .withLogFile() + # .withLogTopics("marketplace", "sales", "statemachine", "reservations") + .some, ): let client0 = clients()[0] let provider0 = providers()[0] @@ -241,7 +243,7 @@ marketplacesuite(name = "SP Slot Repair", stopOnRequestFail = true): NodeConfigs( clients: CodexConfigs.init(nodes = 1) # .debug() - # .withLogFile() + # .withLogFile() # .withLogTopics("node", "erasure") .some, providers: CodexConfigs.init(nodes = 3)