Rationalised the queues.

- the internal notify activites (send sms code, forgotten passwords etc) all not in a "notify" queue.
- deleted all unused queues
This commit is contained in:
Martyn Inglis
2016-09-26 12:35:59 +01:00
parent 76d3f08b46
commit ce5b5fbf4c
6 changed files with 12 additions and 22 deletions

View File

@@ -421,7 +421,7 @@ def test_send_user_reset_password_should_send_reset_password_link(notify_api,
'some_uuid',
app.encryption.encrypt(message),
"2016-01-01T11:09:00.061258"],
queue="email-reset-password")
queue="notify")
def test_send_user_reset_password_should_return_400_when_email_is_missing(notify_api):
@@ -501,7 +501,7 @@ def test_send_already_registered_email(notify_api, sample_user, already_register
'some_uuid',
app.encryption.encrypt(message),
"2016-01-01T11:09:00.061258"),
queue="email-already-registered")
queue="notify")
def test_send_already_registered_email_returns_400_when_data_is_missing(notify_api, sample_user):