Skip to content

Commit a6a513d

Browse files
Use base name for cancellation token
1 parent 0a077f2 commit a6a513d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tools/ToolCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ protected ToolCommand(HttpClient httpClient, ChartIO io, IAnsiConsole console)
2020
public async Task<int> ExecuteAsync(CommandContext context, T settings)
2121
=> await ExecuteAsync(context, settings, CancellationToken.None);
2222

23-
public override async Task<int> ExecuteAsync(CommandContext context, T settings, CancellationToken cancelToken)
23+
public override async Task<int> ExecuteAsync(CommandContext context, T settings, CancellationToken cancellationToken)
2424
=> await _console.Progress()
2525
.Columns(_columns)
2626
.StartAsync(async ctx => await Run(ctx, settings));

0 commit comments

Comments
 (0)