File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 7
7
8
8
namespace KustoCopyConsole . Orchestration
9
9
{
10
- internal class CopyOrchestration : IAsyncDisposable
10
+ internal class MainOrchestration : IAsyncDisposable
11
11
{
12
12
private readonly RowItemGateway _rowItemGateway ;
13
13
14
14
#region Constructors
15
- internal static async Task < CopyOrchestration > CreateAsync (
15
+ internal static async Task < MainOrchestration > CreateAsync (
16
16
CommandLineOptions options ,
17
17
CancellationToken ct )
18
18
{
@@ -22,10 +22,10 @@ internal static async Task<CopyOrchestration> CreateAsync(
22
22
23
23
await Task . CompletedTask ;
24
24
25
- return new CopyOrchestration ( parameterization , rowItemGateway ) ;
25
+ return new MainOrchestration ( parameterization , rowItemGateway ) ;
26
26
}
27
27
28
- private CopyOrchestration (
28
+ private MainOrchestration (
29
29
MainJobParameterization parameterization ,
30
30
RowItemGateway rowItemGateway )
31
31
{
Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ private static async Task RunOptionsAsync(CommandLineOptions options)
157
157
} ;
158
158
try
159
159
{
160
- var orchestration = await CopyOrchestration . CreateAsync (
160
+ var orchestration = await MainOrchestration . CreateAsync (
161
161
options ,
162
162
cancellationTokenSource . Token ) ;
163
163
You can’t perform that action at this time.
0 commit comments