diff --git a/Framework/FileUtils/FileManager.cs b/Framework/FileUtils/FileManager.cs index 9b25c56..10ecf24 100644 --- a/Framework/FileUtils/FileManager.cs +++ b/Framework/FileUtils/FileManager.cs @@ -45,7 +45,7 @@ namespace FileUtils { var sw = Stopwatch.Begin(log); var result = GenerateRandomFile(size, label); - sw.End($"Generated file '{result.Describe()}'."); + sw.End($"Generated file {result.Describe()}."); return result; } diff --git a/ProjectPlugins/CodexPlugin/CodexContainerRecipe.cs b/ProjectPlugins/CodexPlugin/CodexContainerRecipe.cs index ca619b2..08a21be 100644 --- a/ProjectPlugins/CodexPlugin/CodexContainerRecipe.cs +++ b/ProjectPlugins/CodexPlugin/CodexContainerRecipe.cs @@ -9,7 +9,7 @@ namespace CodexPlugin { private readonly MarketplaceStarter marketplaceStarter = new MarketplaceStarter(); - private const string DefaultDockerImage = "codexstorage/nim-codex:sha-e4ddb94-dist-tests"; + private const string DefaultDockerImage = "codexstorage/nim-codex:sha-2a34c48-dist-tests"; public const string ApiPortTag = "codex_api_port"; public const string ListenPortTag = "codex_listen_port"; public const string MetricsPortTag = "codex_metrics_port";