Ensure context bindings are used for Run().
This commit is contained in:
+2
-1
@@ -23,10 +23,11 @@ func (b bindings) clone() bindings {
|
||||
return out
|
||||
}
|
||||
|
||||
func (b bindings) merge(other bindings) {
|
||||
func (b bindings) merge(other bindings) bindings {
|
||||
for k, v := range other {
|
||||
b[k] = v
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
||||
func getMethod(value reflect.Value, name string) reflect.Value {
|
||||
|
||||
Reference in New Issue
Block a user