Skip to content

Commit

Permalink
Merge pull request #17 from nameko/rename-queues-for-expiry-rollout
Browse files Browse the repository at this point in the history
Rename-queues
  • Loading branch information
mattbennett committed Jul 18, 2017
2 parents 9361175 + 1823979 commit 3b5e17f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ Release Notes

Semantic versioning is followed.

Version 0.4.1
-------------

Release 2017-07-18

Change queue name to differentiate expiring queues from any existing queues.

Version 0.4.0
-------------

Expand Down
2 changes: 1 addition & 1 deletion nameko_amqp_retry/backoff.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


def get_backoff_queue_name(expiration):
return "backoff--{}".format(expiration)
return "backoff--{}ms".format(expiration)


def round_to_nearest(value, interval):
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='nameko-amqp-retry',
version='0.4.0',
version='0.4.1',
description='Nameko extension allowing AMQP entrypoints to retry later',
author='Student.com',
url='http://github.com/nameko/nameko-amqp-retry',
Expand All @@ -14,6 +14,7 @@
],
extras_require={
'dev': [
"arrow==0.8.0",
"coverage==4.0.3",
"flake8==2.5.0",
"pylint==1.5.1",
Expand Down

0 comments on commit 3b5e17f

Please sign in to comment.