From f2517b2adef835739b0fc114253e9bb8634425c1 Mon Sep 17 00:00:00 2001 From: benbierens Date: Thu, 20 Jul 2023 09:02:17 +0200 Subject: [PATCH] Bump to latest codex master image --- DistTestCore/Codex/CodexContainerRecipe.cs | 2 +- DistTestCore/OnlineCodexNode.cs | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/DistTestCore/Codex/CodexContainerRecipe.cs b/DistTestCore/Codex/CodexContainerRecipe.cs index 29ee032..a221296 100644 --- a/DistTestCore/Codex/CodexContainerRecipe.cs +++ b/DistTestCore/Codex/CodexContainerRecipe.cs @@ -9,7 +9,7 @@ namespace DistTestCore.Codex public const string DockerImage = "codexstorage/nim-codex:sha-7227a4a"; #else //public const string DockerImage = "thatbenbierens/nim-codex:loopingyeah"; - public const string DockerImage = "codexstorage/nim-codex:sha-7227a4a"; + public const string DockerImage = "codexstorage/nim-codex:sha-6708202"; #endif public const string MetricsPortTag = "metrics_port"; public const string DiscoveryPortTag = "discovery-port"; diff --git a/DistTestCore/OnlineCodexNode.cs b/DistTestCore/OnlineCodexNode.cs index 1054d3e..60716e7 100644 --- a/DistTestCore/OnlineCodexNode.cs +++ b/DistTestCore/OnlineCodexNode.cs @@ -72,9 +72,6 @@ namespace DistTestCore if (string.IsNullOrEmpty(response)) Assert.Fail("Received empty response."); if (response.StartsWith(UploadFailedMessage)) Assert.Fail("Node failed to store block."); - var logReplacement = $"(CID:{file.Describe()})"; - Log($"ContentId '{response}' is {logReplacement}"); - lifecycle.Log.AddStringReplace(response, logReplacement); Log($"Uploaded file. Received contentId: '{response}'."); return new ContentId(response); }