forked from rhettg/BlueOx
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-arrange import statements; handle unicode strings (#9)
* Re-arrange import statements; convert unicode to non unicode We were seeing some errors where celery task names might have non unicode characters in them, which was making a non fatal exception where blueox couldn't parse it. This change will force unicode strings in type to be not unicode, and save us millions of useless sentry events (and not drop the data either).
- Loading branch information
1 parent
53989b3
commit 66aa241
Showing
3 changed files
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
""" | ||
|
||
__title__ = 'blueox' | ||
__version__ = '0.11.6.2' | ||
__version__ = '0.11.6.3' | ||
__author__ = 'Rhett Garber' | ||
__author_email__ = '[email protected]' | ||
__license__ = 'ISC' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters