Skip to content

Commit 9b88fe6

Browse files
committed
.
1 parent afbabf9 commit 9b88fe6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

code/KustoCopyConsole/Orchestration/CopyOrchestration.cs code/KustoCopyConsole/Orchestration/MainOrchestration.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77

88
namespace KustoCopyConsole.Orchestration
99
{
10-
internal class CopyOrchestration : IAsyncDisposable
10+
internal class MainOrchestration : IAsyncDisposable
1111
{
1212
private readonly RowItemGateway _rowItemGateway;
1313

1414
#region Constructors
15-
internal static async Task<CopyOrchestration> CreateAsync(
15+
internal static async Task<MainOrchestration> CreateAsync(
1616
CommandLineOptions options,
1717
CancellationToken ct)
1818
{
@@ -22,10 +22,10 @@ internal static async Task<CopyOrchestration> CreateAsync(
2222

2323
await Task.CompletedTask;
2424

25-
return new CopyOrchestration(parameterization, rowItemGateway);
25+
return new MainOrchestration(parameterization, rowItemGateway);
2626
}
2727

28-
private CopyOrchestration(
28+
private MainOrchestration(
2929
MainJobParameterization parameterization,
3030
RowItemGateway rowItemGateway)
3131
{

code/KustoCopyConsole/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ private static async Task RunOptionsAsync(CommandLineOptions options)
157157
};
158158
try
159159
{
160-
var orchestration = await CopyOrchestration.CreateAsync(
160+
var orchestration = await MainOrchestration.CreateAsync(
161161
options,
162162
cancellationTokenSource.Token);
163163

0 commit comments

Comments
 (0)