nyx/tests/dynamic_fixtures/message_handler/sqs_python/benign.py
2026-06-05 10:16:30 -05:00

10 lines
279 B
Python

"""Phase 20 (Track M.2) — SQS Python benign control."""
import os
import shlex
_NYX_ADAPTER_MARKER = "boto3.client('sqs')"
def handler(envelope):
body = envelope.get('Body', '') if isinstance(envelope, dict) else str(envelope)
os.system("echo " + shlex.quote(body))