Skip to content

Commit

Permalink
Merge pull request #14 from KixPanganiban/fix/exceptions
Browse files Browse the repository at this point in the history
Fix some Exceptions not being propagated properly.
  • Loading branch information
tjoelsson committed Aug 16, 2016
2 parents 1a26bf1 + 7a92823 commit 20c9926
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGES
Expand Up @@ -3,6 +3,14 @@ Zask Changelog

Here you can see the full list of changes between each Zask release.

Version 1.9.4
-------------

released on August 16th 2016

* Fixed a bug that prevents Exceptions from properly propagating when there is no started_at in the event header


Version 1.9.3
-------------

Expand Down
2 changes: 1 addition & 1 deletion zask/__init__.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = '1.9.3'
__version__ = '1.9.4'

import gevent
from gevent.local import local
Expand Down
2 changes: 1 addition & 1 deletion zask/ext/zerorpc/__init__.py
Expand Up @@ -296,7 +296,7 @@ def server_inspect_exception(self, request_event, reply_event, task_context, exc
'referrer': '-',
'user_agent': '-',
'cookies': '-',
'request_time': _milli_time() - start,
'request_time': _milli_time() - start if start else 0,
'uuid': uuid,
})

Expand Down

0 comments on commit 20c9926

Please sign in to comment.