wip tracking download fails
This commit is contained in:
parent
a1833c52cc
commit
8b24de94ab
|
@ -1,4 +1,5 @@
|
||||||
using Logging;
|
using Logging;
|
||||||
|
using Utils;
|
||||||
|
|
||||||
namespace KubernetesWorkflow
|
namespace KubernetesWorkflow
|
||||||
{
|
{
|
||||||
|
@ -40,6 +41,11 @@ namespace KubernetesWorkflow
|
||||||
|
|
||||||
protected override void ProcessLine(string line)
|
protected override void ProcessLine(string line)
|
||||||
{
|
{
|
||||||
|
foreach (var replacement in BaseLog.replacements)
|
||||||
|
{
|
||||||
|
line = replacement.Apply(line);
|
||||||
|
}
|
||||||
|
|
||||||
LogFile.WriteRaw(line);
|
LogFile.WriteRaw(line);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@ namespace Logging
|
||||||
public static bool EnableDebugLogging { get; set; } = false;
|
public static bool EnableDebugLogging { get; set; } = false;
|
||||||
|
|
||||||
private readonly NumberSource subfileNumberSource = new NumberSource(0);
|
private readonly NumberSource subfileNumberSource = new NumberSource(0);
|
||||||
private readonly List<BaseLogStringReplacement> replacements = new List<BaseLogStringReplacement>();
|
public static List<BaseLogStringReplacement> replacements = new List<BaseLogStringReplacement>();
|
||||||
private LogFile? logFile;
|
private LogFile? logFile;
|
||||||
|
|
||||||
public BaseLog()
|
public BaseLog()
|
||||||
|
|
|
@ -8,17 +8,18 @@ namespace CodexPlugin
|
||||||
public class CodexContainerRecipe : ContainerRecipeFactory
|
public class CodexContainerRecipe : ContainerRecipeFactory
|
||||||
{
|
{
|
||||||
private const string DefaultDockerImage =
|
private const string DefaultDockerImage =
|
||||||
//"codexstorage/nim-codex:0.1.7-dist-tests"; // => 20/20: 17 seconds 10/10: 3 seconds
|
//"codexstorage/nim-codex:0.1.7-dist-tests"; // => 20/20: 17 seconds 10/10: 3 seconds
|
||||||
//"codexstorage/nim-codex:sha-2a25460-dist-tests"; // PR => 20/20: 17 seconds
|
//"codexstorage/nim-codex:sha-2a25460-dist-tests"; // PR => 20/20: 17 seconds
|
||||||
//"thatbenbierens/nim-codex:blockexcpr1"; // PR with revert of "Fixes issue where only wants of type block are stored in peerContext" => 20/20: 17 seconds
|
//"thatbenbierens/nim-codex:blockexcpr1"; // PR with revert of "Fixes issue where only wants of type block are stored in peerContext" => 20/20: 17 seconds
|
||||||
//"thatbenbierens/nim-codex:blockexprecreate"; // v0.1.7 with patch => 20/20: 19 seconds
|
//"thatbenbierens/nim-codex:blockexprecreate"; // v0.1.7 with patch => 20/20: 19 seconds
|
||||||
//"thatbenbierens/nim-codex:blockexprecreate016"; // v0.1.6 with patch => 20/20: 19 seconds 10/10: 2 seconds
|
//"thatbenbierens/nim-codex:blockexprecreate016"; // v0.1.6 with patch => 20/20: 19 seconds 10/10: 2 seconds
|
||||||
"thatbenbierens/nim-codex:blockexchprtinker7";
|
//"thatbenbierens/nim-codex:blockexchprtinker7";
|
||||||
//"thatbenbierens/nim-codex:blkexc9"; // wow-fast
|
//"thatbenbierens/nim-codex:blkexc9"; // wow-fast
|
||||||
|
|
||||||
|
"thatbenbierens/nim-codex:asyncprofile5break"; // asynced trees.
|
||||||
|
|
||||||
blocks are stored, blocks are resolved
|
//blocks are stored, blocks are resolved
|
||||||
store-stream does not continue. node too busy???
|
//store-stream does not continue. node too busy???
|
||||||
|
|
||||||
public const string ApiPortTag = "codex_api_port";
|
public const string ApiPortTag = "codex_api_port";
|
||||||
public const string ListenPortTag = "codex_listen_port";
|
public const string ListenPortTag = "codex_listen_port";
|
||||||
|
|
Loading…
Reference in New Issue