diff options
Diffstat (limited to 'pkg/instance/execprog.go')
| -rw-r--r-- | pkg/instance/execprog.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/instance/execprog.go b/pkg/instance/execprog.go index 7c97819f4..564889ba2 100644 --- a/pkg/instance/execprog.go +++ b/pkg/instance/execprog.go @@ -91,7 +91,7 @@ func SetupExecProg(vmInst *vm.Instance, mgrCfg *mgrconfig.Config, reporter *repo func CreateExecProgInstance(vmPool *vm.Pool, vmIndex int, mgrCfg *mgrconfig.Config, reporter *report.Reporter, opt *OptionalConfig) (*ExecProgInstance, error) { - vmInst, err := vmPool.Create(vmIndex) + vmInst, err := vmPool.Create(context.Background(), vmIndex) if err != nil { return nil, fmt.Errorf("failed to create VM: %w", err) } |
