mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
Prefixes inline completion request uuid with "icr-". (#252313)
This commit is contained in:
committed by
GitHub
parent
00632abf5e
commit
73141f7554
@@ -39,7 +39,7 @@ export function provideInlineCompletions(
|
||||
editorType: InlineCompletionEditorType,
|
||||
languageConfigurationService?: ILanguageConfigurationService,
|
||||
): IInlineCompletionProviderResult {
|
||||
const requestUuid = generateUuid();
|
||||
const requestUuid = 'icr-' + generateUuid();
|
||||
|
||||
const cancellationTokenSource = new CancellationTokenSource();
|
||||
let cancelReason: InlineCompletionsDisposeReason | undefined = undefined;
|
||||
|
||||
Reference in New Issue
Block a user