You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
style(sqs): strip PR/round attributions from .go comments per CLAUDE.md (PR #664 round 14)
Claude low on round 13.1: ~25+ comments across the SQS Go files reference review attributions ('Codex P1 on PR #679', 'CodeRabbit Major on PR #664 round 11', etc.). CLAUDE.md is explicit: 'Don't reference the current task, fix, or callers ... since those belong in the PR description and rot as the codebase evolves.'
Sweep across:
- adapter/sqs_throttle.go
- adapter/sqs_catalog.go
- adapter/sqs_partitioning.go
- adapter/sqs_messages.go
- adapter/sqs_throttle_test.go
- adapter/sqs_partitioning_test.go
- adapter/sqs_throttle_integration_test.go
- adapter/sqs_partitioning_integration_test.go
- adapter/sqs_catalog_test.go
- adapter/sqs_query_protocol.go
- adapter/sqs_query_protocol_test.go
Each comment now retains the substantive WHY (why the design choice was made) and drops the parenthetical attribution to a specific reviewer / PR number / round. Design docs (.md files) are exempt — those are archival records where review attribution is acceptable practice.
go test -race ./adapter/... pass; golangci-lint ./... clean. No behaviour change.
"queue-scoped deduplication is incompatible with multi-partition FIFO because the dedup key cannot be globally unique across partitions without a cross-partition OCC transaction")
154
153
}
155
154
// FifoThroughputLimit=perMessageGroupId requires an explicit
156
-
// PartitionCount > 1 (CodeRabbit Major on PR #664 round 11). §7.2
157
-
// of the design used to suggest "infer a sensible default, e.g.
155
+
// PartitionCount > 1. §7.2 of the design used to suggest
156
+
// "infer a sensible default, e.g.
158
157
// 8" for HT-FIFO callers that omit PartitionCount, but a hidden
159
158
// default makes CreateQueue idempotency depend on deployment
160
159
// state — the same wire payload could resolve to a 4-partition
0 commit comments