Skip to content

Commit

Permalink
Merge pull request #5513 from dannon/fix_non_gxy_sentry_middleware
Browse files Browse the repository at this point in the history
Default slow request tracking to disabled;
  • Loading branch information
martenson committed Feb 12, 2018
2 parents 201d765 + 007ae8f commit 39fd5fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/web/framework/middleware/sentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Sentry(object):
uncaught exceptions and send them to Sentry.
"""

def __init__(self, application, dsn, sloreq):
def __init__(self, application, dsn, sloreq=0):
assert Client is not None, RAVEN_IMPORT_MESSAGE
self.application = application
self.client = None
Expand Down

0 comments on commit 39fd5fd

Please sign in to comment.