Question
Service A is deployed with a routine upgrade of its JSON serialization library (major version). A's tests pass; A is healthy. But downstream service B (unchanged, not redeployed) starts failing to parse a small fraction of messages from A's queue with a date-parse error. Context: the serialization library's new major version changed its DEFAULT date format from RFC3339 with nanoseconds to plain seconds-precision RFC3339 (and timezone offset format). B's parser was written to the old format. Dashboards: A's outbound is fine; B's parse-error rate stepped up at A's deploy time; only messages with sub-second-precision timestamps are affected. Triage, explain, and mitigate.
Stop the bleeding first (mitigate), then form hypotheses from real signals. Separate root cause from symptom, communicate status as you go, and close with what prevents a repeat.