Skip to content

Commit 99a2d23

Browse files
authoredMar 12, 2025··
Merge pull request #2390 from mdzraf/deprecatedMetricsDefaultFalse
Switching deprecatedMetrics Default Value to False
2 parents 668d94e + 56d69fd commit 99a2d23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pkg/driver/options.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ func (o *Options) AddFlags(f *flag.FlagSet) {
115115
f.StringVar(&o.UserAgentExtra, "user-agent-extra", "", "Extra string appended to user agent.")
116116
f.BoolVar(&o.Batching, "batching", false, "To enable batching of API calls. This is especially helpful for improving performance in workloads that are sensitive to EC2 rate limits.")
117117
f.DurationVar(&o.ModifyVolumeRequestHandlerTimeout, "modify-volume-request-handler-timeout", DefaultModifyVolumeRequestHandlerTimeout, "Timeout for the window in which volume modification calls must be received in order for them to coalesce into a single volume modification call to AWS. This must be lower than the csi-resizer and volumemodifier timeouts")
118-
f.BoolVar(&o.DeprecatedMetrics, "deprecated-metrics", true, "DEPRECATED: To enable deprecated metrics. This parameter is only for backward compatibility and may be removed in a future release.")
118+
f.BoolVar(&o.DeprecatedMetrics, "deprecated-metrics", false, "DEPRECATED: To enable deprecated metrics. This parameter is only for backward compatibility and may be removed in a future release.")
119119
}
120120
// Node options
121121
if o.Mode == AllMode || o.Mode == NodeMode {

0 commit comments

Comments
 (0)
Please sign in to comment.