Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/aws-efs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

An operator to deploy the [AWS EFS CSI driver](https://github.com/openshift/aws-efs-csi-driver) in OKD.

Make a test change.

This operator is installed by OLM.

# Quick start
Expand Down
2 changes: 2 additions & 0 deletions pkg/driver/aws-efs/aws_efs_tags_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ func (c *EFSAccessPointTagsController) createClientWithCredentials(ctx context.C
return nil, fmt.Errorf("error parsing credentials data: %v", err)
}

klog.Infof("tes change")

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Remove the placeholder log before merging.

klog.Infof("tes change") is typoed, context-free, and will pollute production logs every time the client is initialized. Remove this test marker or replace it with a meaningful diagnostic message.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@pkg/driver/aws-efs/aws_efs_tags_controller.go` at line 149, Remove the
placeholder klog.Infof call in the client initialization flow; do not emit the
typoed, context-free “tes change” message in production logs.


section := cfg.Section("default")
roleARN := section.Key("role_arn").String()
tokenFile := os.Getenv("AWS_WEB_IDENTITY_TOKEN_FILE")
Expand Down