Fixes fetching of docker image for status log
This commit is contained in:
parent
dbbd05ea97
commit
933932b091
@ -4,6 +4,7 @@ using DistTestCore;
|
|||||||
using DistTestCore.Codex;
|
using DistTestCore.Codex;
|
||||||
using DistTestCore.Marketplace;
|
using DistTestCore.Marketplace;
|
||||||
using DistTestCore.Metrics;
|
using DistTestCore.Metrics;
|
||||||
|
using Logging;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using Configuration = CodexNetDeployer.Configuration;
|
using Configuration = CodexNetDeployer.Configuration;
|
||||||
|
|
||||||
@ -33,10 +34,10 @@ public class Program
|
|||||||
}
|
}
|
||||||
|
|
||||||
Console.WriteLine("Using images:" + nl +
|
Console.WriteLine("Using images:" + nl +
|
||||||
$"\tCodex image: '{CodexContainerRecipe.DockerImage}'" + nl +
|
$"\tCodex image: '{new CodexContainerRecipe().Image}'" + nl +
|
||||||
$"\tCodex Contracts image: '{CodexContractsContainerRecipe.DockerImage}'" + nl +
|
$"\tCodexContracts image: '{new CodexContractsContainerRecipe().Image}'" + nl +
|
||||||
$"\tPrometheus image: '{PrometheusContainerRecipe.DockerImage}'" + nl +
|
$"\tPrometheus image: '{new PrometheusContainerRecipe().Image}'" + nl +
|
||||||
$"\tGeth image: '{GethContainerRecipe.DockerImage}'" + nl);
|
$"\tGeth image: '{new GethContainerRecipe().Image}'" + nl);
|
||||||
|
|
||||||
if (!args.Any(a => a == "-y"))
|
if (!args.Any(a => a == "-y"))
|
||||||
{
|
{
|
||||||
|
@ -28,7 +28,7 @@ namespace DistTestCore
|
|||||||
var logConfig = configuration.GetLogConfig();
|
var logConfig = configuration.GetLogConfig();
|
||||||
var startTime = DateTime.UtcNow;
|
var startTime = DateTime.UtcNow;
|
||||||
fixtureLog = new FixtureLog(logConfig, startTime);
|
fixtureLog = new FixtureLog(logConfig, startTime);
|
||||||
statusLog = new StatusLog(logConfig, startTime, CodexContainerRecipe.DefaultDockerImage);
|
statusLog = new StatusLog(logConfig, startTime, new CodexContainerRecipe().Image);
|
||||||
|
|
||||||
PeerConnectionTestHelpers = new PeerConnectionTestHelpers(this);
|
PeerConnectionTestHelpers = new PeerConnectionTestHelpers(this);
|
||||||
PeerDownloadTestHelpers = new PeerDownloadTestHelpers(this);
|
PeerDownloadTestHelpers = new PeerDownloadTestHelpers(this);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user