File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ type HatchetContext interface {
49
49
50
50
StepRunId () string
51
51
52
+ StepId () string
53
+
52
54
WorkflowRunId () string
53
55
54
56
Log (message string )
@@ -208,6 +210,10 @@ func (h *hatchetContext) StepRunId() string {
208
210
return h .a .StepRunId
209
211
}
210
212
213
+ func (h * hatchetContext ) StepId () string {
214
+ return h .a .StepId
215
+ }
216
+
211
217
func (h * hatchetContext ) WorkflowRunId () string {
212
218
return h .a .WorkflowRunId
213
219
}
Original file line number Diff line number Diff line change @@ -55,6 +55,10 @@ func (c *testHatchetContext) StepRunId() string {
55
55
panic ("not implemented" )
56
56
}
57
57
58
+ func (c * testHatchetContext ) StepId () string {
59
+ panic ("not implemented" )
60
+ }
61
+
58
62
func (c * testHatchetContext ) WorkflowRunId () string {
59
63
panic ("not implemented" )
60
64
}
You can’t perform that action at this time.
0 commit comments