Skip to content

Commit 1cc57e5

Browse files
authored
Make verbose flag default true (#6)
1 parent 6efc0a8 commit 1cc57e5

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG

+9-4
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,28 @@
22
beanstalk-dispatch changelog
33
===================================
44

5-
Version 0.0.4, 31 October 2017:
5+
Version 0.0.5, 08, 8 February, 2018
6+
-------------------------
7+
8+
* Change `verbose` flag to default `True`
9+
10+
Version 0.0.4, 31 October, 2017:
611
-------------------------
712

813
* Change license to Apache 2
914

1015

11-
Version 0.0.3, 27 October 2017:
16+
Version 0.0.3, 27 October, 2017:
1217
-------------------------
1318

1419
* Update trove classifiers
1520

16-
Version 0.0.2, 27 October 2017:
21+
Version 0.0.2, 27 October, 2017:
1722
-------------------------
1823

1924
* Rebundle
2025

21-
Version 0.0.1, 27 October 2017:
26+
Version 0.0.1, 27 October, 2017:
2227
-------------------------
2328

2429
* Initial release

beanstalk_dispatch/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (0, 0, 4, 'final', 0)
1+
VERSION = (0, 0, 5, 'final', 0)
22

33

44
def get_version():

beanstalk_dispatch/safe_task.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class SafeTask(object):
2424
timeout_timedelta = getattr(settings,
2525
'BEANSTALK_DISPATCH_TASK_TIMEOUT',
2626
timedelta(minutes=2))
27-
verbose = False
27+
verbose = True
2828

2929
def run(self, *args, **kwargs):
3030
"""

0 commit comments

Comments
 (0)