Skip to content

Commit

Permalink
Merge branch 'feature/stable_release' of github.com:silverbackhq/silv…
Browse files Browse the repository at this point in the history
…erback into feature/stable_release

* 'feature/stable_release' of github.com:silverbackhq/silverback:
  Fix
  Update dependency redis to v3.5.0 (#234)
  Update dependency Django to v3.0.6 (#235)
  Update nginx Docker tag to v1.18 (#232)
  Update dependency twilio to v6.39.0 (#233)
  Update dependency cryptography to v2.9.2 (#231)
  Update dependency psycopg2-binary to v2.8.5 (#228)
  Update dependency psycopg2 to v2.8.5 (#227)
  Update dependency twilio to v6.38.1 (#229)
  Update dependency python-dotenv to v0.13.0 (#230)
  Update dependency cryptography to v2.9 (#226)
  Update dependency twilio to v6.38.0 (#225)
  Update dependency celery to v4.4.2 (#222)
  Update dependency twilio to v6.37.0 (#223)
  Update dependency Django to v3.0.5 (#224)
  • Loading branch information
Clivern committed May 21, 2020
2 parents fd88c63 + 888de3c commit fb4bbf1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions app/tasks/notify_subscriber.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def notify_subscriber(notification_id, correlation_id=""):
status = __deliver_webhook(
subscriber.endpoint,
subscriber.auth_token,
'{}' % ()
"{}"
)

if status:
Expand Down Expand Up @@ -123,7 +123,7 @@ def notify_subscriber(notification_id, correlation_id=""):
status = __deliver_webhook(
subscriber.endpoint,
subscriber.auth_token,
'{}' % ()
"{}"
)
if status:
# message sent again
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:

# Nginx Service
nginx:
image: 'nginx:1.17'
image: 'nginx:1.18'
ports:
- '80:80'
volumes:
Expand Down
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
Django==3.0.4
Django==3.0.6
mysqlclient==1.4.6
python-dotenv==0.12.0
python-dotenv==0.13.0
gunicorn==20.0.4
requests==2.23.0
psycopg2==2.8.4
psycopg2==2.8.5
jsonschema==3.2.0
celery==4.4.1
redis==3.4.1
cryptography==2.8
celery==4.4.2
redis==3.5.0
cryptography==2.9.2
markdown2==2.3.8
twilio==6.36.0
twilio==6.39.0
pyumetric==0.0.4
pyvalitron==1.1.3
feedgen==0.9.0
python-dateutil==2.8.1
psycopg2-binary==2.8.4
psycopg2-binary==2.8.5
whitenoise==5.0.1

0 comments on commit fb4bbf1

Please sign in to comment.