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 a78cce6 commit a63dc86Copy full SHA for a63dc86
packages/core/src/shared/sam/debugger/awsSamDebugger.ts
@@ -267,11 +267,11 @@ export class SamDebugConfigProvider implements vscode.DebugConfigurationProvider
267
if (resource) {
268
// we do not know enough to populate the runtime field for Image-based Lambdas
269
const runtimeName = CloudFormation.isZipLambdaResource(resource?.Properties)
270
- ? CloudFormation.getStringForProperty(
+ ? (CloudFormation.getStringForProperty(
271
resource?.Properties,
272
'Runtime',
273
templateDatum.item
274
- ) ?? ''
+ ) ?? '')
275
: ''
276
configs.push(
277
createTemplateAwsSamDebugConfig(
0 commit comments