Skip to content

Commit af7aeb2

Browse files
committed
update
1 parent 1f11c5d commit af7aeb2

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

ProjectPlugins/CodexPlugin/CodexContainerRecipe.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace CodexPlugin
77
{
88
public class CodexContainerRecipe : ContainerRecipeFactory
99
{
10-
private const string DefaultDockerImage = "codexstorage/nim-codex:sha-471ebb2-dist-tests";
10+
private const string DefaultDockerImage = "codexstorage/nim-codex:sha-64b82de-dist-tests";
1111

1212
public const string ApiPortTag = "codex_api_port";
1313
public const string ListenPortTag = "codex_listen_port";

Tests/DistTestCore/DistTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace DistTestCore
1313
[Parallelizable(ParallelScope.All)]
1414
public abstract class DistTest
1515
{
16-
private const string TestNamespacePrefix = "ct-";
16+
private const string TestNamespacePrefix = "cdx-";
1717
private readonly Configuration configuration = new Configuration();
1818
private readonly Assembly[] testAssemblies;
1919
private readonly FixtureLog fixtureLog;

Tools/AutoClient/Program.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ public static async Task Main(string[] args)
5555
await Task.Delay(delayPerPurchaser);
5656
}
5757

58+
cancellationToken.WaitHandle.WaitOne();
59+
5860
log.Log("Done.");
5961
}
6062

Tools/AutoClient/Purchaser.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ public class Purchaser
1212
private readonly HttpClient client;
1313
private readonly Address address;
1414
private readonly CodexApi codex;
15-
private readonly CancellationToken ct;
1615
private readonly Configuration config;
1716
private readonly ImageGenerator generator;
17+
private readonly CancellationToken ct;
1818

19-
public Purchaser(ILog log, HttpClient client, Address address, CodexApi codex, CancellationToken ct, Configuration config, ImageGenerator generator)
19+
public Purchaser(ILog log, HttpClient client, Address address, CodexApi codex, Configuration config, ImageGenerator generator, CancellationToken ct)
2020
{
2121
this.log = log;
2222
this.client = client;
2323
this.address = address;
2424
this.codex = codex;
25-
this.ct = ct;
2625
this.config = config;
2726
this.generator = generator;
27+
this.ct = ct;
2828
}
2929

3030
public void Start()

0 commit comments

Comments
 (0)