Skip to content

Commit 48f67e2

Browse files
committed
Fix lint error
Signed-off-by: kerthcet <[email protected]>
1 parent 40c0fee commit 48f67e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/coscheduling/coscheduling.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func New(obj runtime.Object, handle framework.Handle) (framework.Plugin, error)
8888
scheduleTimeout: &scheduleTimeDuration,
8989
}
9090
if args.PodGroupBackoffSeconds < 0 {
91-
err := fmt.Errorf("Parse Arguments Failed")
91+
err := fmt.Errorf("parse arguments failed")
9292
klog.ErrorS(err, "PodGroupBackoffSeconds cannot be negative")
9393
return nil, err
9494
} else if args.PodGroupBackoffSeconds > 0 {

0 commit comments

Comments
 (0)