Skip to content

Commit 0d16183

Browse files
scotwellsclaude
andcommitted
fix(lint): keep cmd/main.go within the 120-char line limit
The single-tenant setupEdgeQuotaWatch call and the edge-quota-watch log message exceeded golangci-lint's lll max of 120 (cmd/ is not lll-excluded, unlike internal/). Wrap both — wording unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent ccd3d09 commit 0d16183

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

cmd/main.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,14 +361,16 @@ func main() {
361361
// The feature-flagged edge quota forwarder (Milo-provider manager) is only
362362
// meaningful when claims live behind project control planes; local quota
363363
// supersedes it.
364-
quotaRunnables, claimEvents, err := setupEdgeQuotaWatch(serverConfig, cfg, quotaRestConfig, edgeClusterName, localQuota)
364+
quotaRunnables, claimEvents, err := setupEdgeQuotaWatch(
365+
serverConfig, cfg, quotaRestConfig, edgeClusterName, localQuota)
365366
if err != nil {
366367
setupLog.Error(err, "unable to set up edge quota watch")
367368
os.Exit(1)
368369
}
369370
switch {
370371
case claimEvents != nil:
371-
setupLog.Info("edge quota watch enabled: forwarding ResourceClaim grants from project control planes to the cell Instance controller")
372+
setupLog.Info("edge quota watch enabled: forwarding ResourceClaim grants from " +
373+
"project control planes to the cell Instance controller")
372374
runnables = append(runnables, quotaRunnables...)
373375
case !watchProviderClaims && quotaRestConfig != nil:
374376
setupLog.Info("single-cell quota enforcement active without a direct ResourceClaim watch; " +

0 commit comments

Comments
 (0)