fixes blockTTL envvar

This commit is contained in:
benbierens 2023-07-14 10:45:26 +02:00
parent f23926636c
commit b295314bde
No known key found for this signature in database
GPG Key ID: FE44815D96D0A1AA
2 changed files with 2 additions and 1 deletions

View File

@ -56,7 +56,7 @@ namespace DistTestCore.Codex
}
if (config.BlockTTL != null)
{
AddEnvVar("BLOCK_TTL", config.BlockTTL.ToString()!);
AddEnvVar("CODEX_BLOCK_TTL", config.BlockTTL.ToString()!);
}
if (config.MetricsEnabled)
{

View File

@ -13,6 +13,7 @@ namespace Tests.PeerDiscoveryTests
[TestCase("nim-codex:sha-3f2b417")]
[TestCase("nim-codex:sha-00f6554")]
[TestCase("nim-codex:sha-f053135")]
[TestCase("nim-codex:sha-711e5e0")]
public void ThreeNodes(string dockerImage)
{
var img = "codexstorage/" + dockerImage;