We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab02571 commit b238189Copy full SHA for b238189
server/aws-lsp-codewhisperer/src/language-server/workspaceContext/workspaceContextServer.ts
@@ -34,7 +34,8 @@ export const WorkspaceContextServer = (): Server => features => {
34
lsp.addInitializer((params: InitializeParams) => {
35
workspaceIdentifier = params.initializationOptions?.aws?.contextConfiguration?.workspaceIdentifier || ''
36
if (!workspaceIdentifier) {
37
- logging.warn(`No workspaceIdentifier set!`)
+ logging.warn(`No workspaceIdentifier set. Treating this workspace as a temporary session.`)
38
+ workspaceIdentifier = crypto.randomUUID()
39
}
40
41
const folders = workspace.getAllWorkspaceFolders()
0 commit comments