-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
HIGH Priority Bug Report for MiniUdmAsyncErrorTracing
Date: 2025-12-23T23:00:13.545Z
Priority: P0
Severity: HIGH
Total Issues: 2
1. sample.go:20
Category: error_handling
Empty error check - error is ignored
namespace := "default"
items, err := GetDeployments(clientset, ctx, namespace)
if err != nil {
fmt.Println(err)
} else {
for _, item := range items {
2. sample.go:34
Category: error_handling
Empty error check - error is ignored
list, err := clientset.AppsV1().Deployments(namespace).
List(ctx, metav1.ListOptions{})
if err != nil {
log.Printf("Error processing request: %v", err)
return nil, err
}
Full report available in workflow artifacts.