diff --git a/BasicTests/DebugEndpointTests.cs b/BasicTests/DebugEndpointTests.cs index 6c6ef4f..fef0cec 100644 --- a/BasicTests/DebugEndpointTests.cs +++ b/BasicTests/DebugEndpointTests.cs @@ -41,11 +41,11 @@ namespace CodexDistTests.BasicTests public void OneClientLargeFileTest() { var primary = SetupCodexNode() - .WithLogLevel(CodexLogLevel.Trace) - .WithStorageQuota(100.GB()) + .WithLogLevel(CodexLogLevel.Warn) + .WithStorageQuota(10.GB()) .BringOnline(); - var testFile = GenerateTestFile(40.GB()); + var testFile = GenerateTestFile(1.GB()); var contentId = primary.UploadFile(testFile); diff --git a/TestCore/FileManager.cs b/TestCore/FileManager.cs index 4dbba44..a7de8cf 100644 --- a/TestCore/FileManager.cs +++ b/TestCore/FileManager.cs @@ -11,7 +11,7 @@ namespace CodexDistTests.TestCore public class FileManager : IFileManager { - public const int ChunkSize = 1024; + public const int ChunkSize = 1024 * 1024; private const string Folder = "TestDataFiles"; private readonly Random random = new Random(); private readonly List activeFiles = new List(); diff --git a/TestCore/Timing.cs b/TestCore/Timing.cs index 8fa9361..f41b5fd 100644 --- a/TestCore/Timing.cs +++ b/TestCore/Timing.cs @@ -89,7 +89,7 @@ namespace CodexDistTests.TestCore { public TimeSpan HttpCallTimeout() { - return TimeSpan.FromMinutes(30); + return TimeSpan.FromHours(2); } public int HttpCallRetryCount()