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); }