Skip to content

Commit d3e7afe

Browse files
committed
fix.
1 parent be67bf7 commit d3e7afe

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

execution_context.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ func (c *executionContext) GetVariable(key string) (string, bool) {
3434
return val, ok
3535
}
3636

37-
func (c *executionContext) SetVariable(key string, value string) {
38-
c.mu.Lock()
39-
defer c.mu.Unlock()
40-
c.variables[key] = value
41-
}
37+
//func (c *executionContext) SetVariable(key string, value string) {
38+
// c.mu.Lock()
39+
// defer c.mu.Unlock()
40+
// c.variables[key] = value
41+
//}

step_handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ type StepContext interface {
1515
StepName() string
1616
RetryCount() int
1717
GetVariable(key string) (string, bool)
18-
SetVariable(key string, value string)
18+
//SetVariable(key string, value string)
1919
}

0 commit comments

Comments
 (0)