Skip to content

Commit 7ee55e7

Browse files
Fixes broken build
1 parent f594112 commit 7ee55e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DevProxy/Commands/MsGraphDbCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ private void ConfigureCommand()
2323
SetAction(GenerateMsGraphDbAsync);
2424
}
2525

26-
private async Task GenerateMsGraphDbAsync(ParseResult parseResult)
26+
private async Task GenerateMsGraphDbAsync(ParseResult parseResult, CancellationToken cancellationToken)
2727
{
28-
_ = await MSGraphDbUtils.GenerateMSGraphDbAsync(_logger, false, context.GetCancellationToken());
28+
_ = await MSGraphDbUtils.GenerateMSGraphDbAsync(_logger, false, cancellationToken);
2929
}
3030
}

0 commit comments

Comments
 (0)