Scorpio
Scorpio
Same card is saved multiple times. Developers first. Please read your slogan twice.
I got a problem with nested app. Pseudocode: ``` api_app = Application() setup_swagger(api_app, swagger_url='/doc') main_app = Application() main_app.add_subapp('/api', api_app) ``` Problem is that Swagger is available on `/api/doc`, but Swagger...
Is It any way how define `readonly` `writeonly` parameters in Models? Basic life example is Model that have `id` field that included it instance representation, but should excluded from *PUT*...
I using Celery and Django and each time got exception during Celery process exit. Python==3.6.1 Django==2.0 celery==4.1.0 eventlet==0.22.0 raven==6.5.0 Celery launched with params: `-A streamtelecom.settings.celery:consumer_app worker -P eventlet -c 1000...
> requests.exceptions.ConnectionError: HTTPConnectionPool(host='fias.nalog.ru', port=80): Max retries exceeded with url: /WebServices/Public/DownloadService.asmx?WSDL (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 110] Connection timed out',)) `python manage.py runserver ` не запускается,...
Django 5 feature update. Database-computed default values - db_default arg and attr on model Field. Tests not written, looks like it haven't things to test. Full [Django 5 updates list](https://github.com/typeddjango/django-stubs/issues/1493).
I used latest commit version of celery-pool-asyncio and [email protected] (latest supported). Looks like long running tasks blocking Kombu, it don't sending AMQP heatbeats and RabbitMQ kill the connection. Runtime logs...
Hello! Pool works perfect. But I some stuck with solution how to send tasks. Right now I just sending it in sync manner: ```python celery_app.send_task("sso.tasks.parse_whitelist", kwargs={"company_id": company.id} ``` Any sync/async...
Hello, @the-wondersmith ! I found some issue in your pool (and in celery-pool-asyncio it is same): Long running tasks blocked pool (?) and Kombu don't sending AMQP heartbeats till task...
Connection aborted didn't included in retryable list and any firebase API calls fails frequently. ```shell Traceback (most recent call last): File "/usr/src/app/notifications/services/notification_service/providers/mobile.py", line 94, in _send_notification firebase.send(fb_message, app=firebase_app) File "/usr/local/lib/python3.10/site-packages/firebase_admin/messaging.py",...