Skip to content

Commit

Permalink
test: fix golint
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx committed Feb 4, 2024
1 parent bf12dfe commit f141023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/iscsilib/iscsiadm.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ type Secrets struct {
func iscsiCmd(args ...string) (string, error) {
stdout, err := execWithTimeout("iscsiadm", args, time.Second*3)

klog.V(2).Infof("Run iscsiadm command: %s", strings.Join(append([]string{"iscsiadm"}, args...), " ")) // nolint
klog.V(2).Infof("Run iscsiadm command: %s", strings.Join(append([]string{"iscsiadm"}, args...), " ")) // nolint
iscsiadmDebug(string(stdout), err)

return string(stdout), err
Expand Down

0 comments on commit f141023

Please sign in to comment.