Skip to content

Commit 1cf6a1c

Browse files
authored
Fix start event id collision warning (#3154)
1 parent 8ad57a6 commit 1cf6a1c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

jetbrains-core/src/software/aws/toolkits/jetbrains/services/lambda/steps/AttachDebuggerParent.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import software.aws.toolkits.jetbrains.utils.execution.steps.StepEmitter
99
import software.aws.toolkits.resources.message
1010

1111
class AttachDebuggerParent(private val childSteps: List<Step>) : Step() {
12-
override val stepName = message("sam.debug.attach")
12+
override val stepName = message("sam.debug.attach.parent")
1313
override val hidden = childSteps.size <= 1
1414
override fun execute(context: Context, stepEmitter: StepEmitter, ignoreCancellation: Boolean) {
1515
childSteps.forEach {

resources/resources/software/aws/toolkits/resources/MessagesBundle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -901,6 +901,7 @@ sam.build.running=Running SAM build
901901
sam.build.succeeded=SAM build command succeeded
902902
sam.build.title=SAM build
903903
sam.debug.attach=Attach Debugger
904+
sam.debug.attach.parent=Attempt Debugger Attachment
904905
sam.debug.dotnet_find_pid=Find DotNet process PID
905906
sam.debug.find_container=Find Container
906907
sam.executable.minimum_too_low_architecture=The architecture {0} requires a minimum SAM CLI version of {1}

0 commit comments

Comments
 (0)