mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing issue with some sites spewing tons of headers back and Python failing.
This commit is contained in:
parent
216a21a892
commit
f0f6c0a828
3 changed files with 5 additions and 2 deletions
|
@ -31,7 +31,7 @@
|
|||
- service_name: task-celery
|
||||
- service_name: task-work
|
||||
rescue:
|
||||
- name: Restart celery
|
||||
- name: Start celery
|
||||
become: yes
|
||||
command: "docker start {{ item.service_name }}"
|
||||
when: item.service_name in inventory_hostname
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
repo: https://github.com/getsentry/self-hosted.git
|
||||
dest: /srv/sentry/
|
||||
version: master
|
||||
notify: reload sentry
|
||||
|
||||
- name: Register sentry in consul
|
||||
tags: consul
|
||||
|
|
|
@ -7,7 +7,9 @@ import django
|
|||
django.setup()
|
||||
|
||||
import urllib.request, urllib.error, urllib.parse
|
||||
import http
|
||||
import http, http.client
|
||||
http.client._MAXHEADERS = 10000
|
||||
|
||||
import xml.sax
|
||||
import redis
|
||||
import random
|
||||
|
|
Loading…
Add table
Reference in a new issue