File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
packages/core/src/stepFunctions/vue/executeStateMachine Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import { ExtContext } from '../../../shared/extensions'
1515import { VueWebview } from '../../../webviews/main'
1616import * as vscode from 'vscode'
1717import { telemetry } from '../../../shared/telemetry/telemetry'
18+ import { ExecutionDetailProvider } from '../../executionDetails/executionDetailProvider'
1819
1920interface 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 || '' )
You can’t perform that action at this time.
0 commit comments