Skip to content

Commit 0a0c869

Browse files
author
Diler Zaza
committed
adding call to execution detail provider
1 parent 68253c3 commit 0a0c869

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/core/src/stepFunctions/vue/executeStateMachine/executeStateMachine.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import { ExtContext } from '../../../shared/extensions'
1515
import { VueWebview } from '../../../webviews/main'
1616
import * as vscode from 'vscode'
1717
import { telemetry } from '../../../shared/telemetry/telemetry'
18+
import { ExecutionDetailProvider } from '../../executionDetails/executionDetailProvider'
1819

1920
interface StateMachine {
2021
arn: string
@@ -61,6 +62,10 @@ export class ExecuteStateMachineWebview extends VueWebview {
6162
stateMachineArn: this.stateMachine.arn,
6263
input,
6364
})
65+
await ExecutionDetailProvider.openExecutionDetails(
66+
startExecResponse.executionArn!,
67+
startExecResponse.startDate!.toString()
68+
)
6469
this.logger.info('started execution for Step Functions State Machine')
6570
this.channel.appendLine(localize('AWS.stepFunctions.executeStateMachine.info.started', 'Execution started'))
6671
this.channel.appendLine(startExecResponse.executionArn || '')

0 commit comments

Comments
 (0)