Fixes test for cloud environment
This commit is contained in:
parent
ce3850b0b0
commit
7e5121a642
|
@ -41,7 +41,7 @@ namespace ContinuousTests.Tests
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
var dl = DownloadFile(Nodes[1], cid!);
|
var dl = DownloadFile(Nodes[0], cid!);
|
||||||
file.AssertIsEqual(dl);
|
file.AssertIsEqual(dl);
|
||||||
|
|
||||||
Stopwatch.Measure(Log, "download-log-asserts", () =>
|
Stopwatch.Measure(Log, "download-log-asserts", () =>
|
||||||
|
|
|
@ -64,9 +64,9 @@ namespace Tests.BasicTests
|
||||||
{
|
{
|
||||||
var blockExpirationTime = TimeSpan.FromMinutes(3);
|
var blockExpirationTime = TimeSpan.FromMinutes(3);
|
||||||
var group = SetupCodexNodes(3, o => o
|
var group = SetupCodexNodes(3, o => o
|
||||||
//.EnableMetrics()
|
.EnableMetrics()
|
||||||
.WithBlockTTL(blockExpirationTime)
|
.WithBlockTTL(blockExpirationTime)
|
||||||
.WithBlockMaintenanceInterval(TimeSpan.FromMinutes(1))
|
.WithBlockMaintenanceInterval(TimeSpan.FromMinutes(2))
|
||||||
.WithBlockMaintenanceNumber(10000)
|
.WithBlockMaintenanceNumber(10000)
|
||||||
.WithStorageQuota(2000.MB()));
|
.WithStorageQuota(2000.MB()));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue