File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ export class LLDBDapDescriptorFactory
211
211
if ( session . configuration . debugAdapterPort ) {
212
212
return new vscode . DebugAdapterServer (
213
213
session . configuration . debugAdapterPort ,
214
- session . configuration . debugAdapterHost ,
214
+ session . configuration . debugAdapterHostname ,
215
215
) ;
216
216
}
217
217
Original file line number Diff line number Diff line change @@ -32,11 +32,11 @@ export class LLDBDapConfigurationProvider
32
32
) : Promise < vscode . DebugConfiguration | null | undefined > {
33
33
try {
34
34
if (
35
- "debugAdapterHost " in debugConfiguration &&
35
+ "debugAdapterHostname " in debugConfiguration &&
36
36
! ( "debugAdapterPort" in debugConfiguration )
37
37
) {
38
38
throw new ErrorWithNotification (
39
- "A debugAdapterPort must be provided when debugAdapterHost is set. Please update your launch configuration." ,
39
+ "A debugAdapterPort must be provided when debugAdapterHostname is set. Please update your launch configuration." ,
40
40
new ConfigureButton ( ) ,
41
41
) ;
42
42
}
@@ -83,7 +83,7 @@ export class LLDBDapConfigurationProvider
83
83
// and list of arguments.
84
84
delete debugConfiguration . debugAdapterExecutable ;
85
85
delete debugConfiguration . debugAdapterArgs ;
86
- debugConfiguration . debugAdapterHost = serverInfo . host ;
86
+ debugConfiguration . debugAdapterHostname = serverInfo . host ;
87
87
debugConfiguration . debugAdapterPort = serverInfo . port ;
88
88
}
89
89
}
You can’t perform that action at this time.
0 commit comments