From 6c5b19ca768c24a9eabcdd4a9945fbecdff7cd52 Mon Sep 17 00:00:00 2001 From: Haitao Chen Date: Mon, 21 Nov 2022 16:03:11 -0800 Subject: [PATCH] tweaks --- step.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/step.go b/step.go index 6e355ee..4d8c85b 100644 --- a/step.go +++ b/step.go @@ -102,10 +102,11 @@ func connectStepDefinition(stepFrom, stepTo StepDefinitionMeta) *graph.DotEdgeSp // StepInstanceMeta is the interface for a step instance type StepInstanceMeta interface { GetName() string - Waitable() asynctask.Waitable - DotSpec() *graph.DotNodeSpec ExecutionData() *StepExecutionData GetState() StepState + Waitable() asynctask.Waitable + + DotSpec() *graph.DotNodeSpec } // StepInstance is the instance of a step, within a job instance.