Skip to content
Snippets Groups Projects
Commit 5aa5c230 authored by Florent Gluck's avatar Florent Gluck
Browse files

Fixed nexus-exam compile error

Fixed newly introduced csv parsing error
Moved most client utils functions to libclient
nexus-exam: changed token refresh delay to 2 min
parent bee0da5e
No related branches found
No related tags found
No related merge requests found
......@@ -872,9 +872,7 @@ func (vms *VMs) DeleteFileFromVM(vm *VM, filePath string) error {
}
vm.DiskBusy = true
defer func(vm *VM) {
vm.DiskBusy = false
}(vm)
defer func(vm *VM) { vm.DiskBusy = false }(vm)
if err := exec.DeleteFromVM(vm.getDiskPath(), filePath); err != nil {
msg := prefix + err.Error()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment