diff --git a/CodexNetDeployer/Program.cs b/CodexNetDeployer/Program.cs index fc4d5f62..c2fc1733 100644 --- a/CodexNetDeployer/Program.cs +++ b/CodexNetDeployer/Program.cs @@ -4,6 +4,7 @@ using DistTestCore; using DistTestCore.Codex; using DistTestCore.Marketplace; using DistTestCore.Metrics; +using Logging; using Newtonsoft.Json; using Configuration = CodexNetDeployer.Configuration; @@ -33,10 +34,10 @@ public class Program } Console.WriteLine("Using images:" + nl + - $"\tCodex image: '{CodexContainerRecipe.DockerImage}'" + nl + - $"\tCodex Contracts image: '{CodexContractsContainerRecipe.DockerImage}'" + nl + - $"\tPrometheus image: '{PrometheusContainerRecipe.DockerImage}'" + nl + - $"\tGeth image: '{GethContainerRecipe.DockerImage}'" + nl); + $"\tCodex image: '{new CodexContainerRecipe().Image}'" + nl + + $"\tCodexContracts image: '{new CodexContractsContainerRecipe().Image}'" + nl + + $"\tPrometheus image: '{new PrometheusContainerRecipe().Image}'" + nl + + $"\tGeth image: '{new GethContainerRecipe().Image}'" + nl); if (!args.Any(a => a == "-y")) { diff --git a/DistTestCore/DistTest.cs b/DistTestCore/DistTest.cs index 45fb4082..252a2f42 100644 --- a/DistTestCore/DistTest.cs +++ b/DistTestCore/DistTest.cs @@ -28,7 +28,7 @@ namespace DistTestCore var logConfig = configuration.GetLogConfig(); var startTime = DateTime.UtcNow; fixtureLog = new FixtureLog(logConfig, startTime); - statusLog = new StatusLog(logConfig, startTime, CodexContainerRecipe.DefaultDockerImage); + statusLog = new StatusLog(logConfig, startTime, new CodexContainerRecipe().Image); PeerConnectionTestHelpers = new PeerConnectionTestHelpers(this); PeerDownloadTestHelpers = new PeerDownloadTestHelpers(this);