mock_sobes
← Чтение чужого кода + код-ревью + network debug
middle debug #623
PR от джуна. Что бы написал в код-ревью? ```python # app/services/notification.py import requests from celery import Celery celery = Celery("app", broker="redis://localhost") @celery.task def send_notification(user_id, message): try: r = requests.post( "http://api.example.com/notify", json={"user": user_id, "msg": message}, timeout=30 ) print(f"sent {user_id}: {r.status_code}") except: print(f"failed {user_id}") pass ```
Чтобы решить вопрос и сохранить попытку — войди.