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
Address PR #2746 review comments for AWS SQS support
Changes made:
- Fix typo: `chaning` → `changing` in sqs.rs comment
- Replace concrete AWS account ID/queue URL with placeholders in example
- Weaken `source_sqs_fifo` guarantees from `TotalOrder`/`ExactlyOnce` to
`NoOrder`/`AtLeastOnce` since SQS FIFO only guarantees ordering within a
single message group; removed `NonDet` parameter; added detailed doc comment
- Add doc comment to `dest_sqs` noting it's for standard queues only (no
`message_group_id` set)
- Add `features = ["alloc"]` to `futures-util` dependency for stream module
- Remove `aws_sqs` from `.vscode/settings.json` cargo features
- Improve `nondet!` justification comments in example
- Remove unused `TotalOrder` import from sqs.rs
Comments dismissed as incorrect/not actionable:
- EC2 hardcoded region/AMI: acceptable for an example
- Delete-before-return: already has TODO, AtLeastOnce marker is accurate
- `?` terminates stream on empty poll: intentional design (same as resolved)
- flat_map yields Vec not Message: wrong (Option iterates over inner Vec)
Co-authored-by: Infinity 🤖 <infinity@hydro.run>
0 commit comments