Skip to content

Commit

Permalink
updated version number in middleware.py (#85)
Browse files Browse the repository at this point in the history
all tests passing
  • Loading branch information
matthewtanner91 committed Mar 1, 2024
1 parent 453b7fc commit d03e084
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion moesifdjango/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __init__(self, get_response):
self.client = MoesifAPIClient(self.middleware_settings.get('APPLICATION_ID'))
self.logger_helper = LoggerHelper()
Configuration.BASE_URI = self.logger_helper.get_configuration_uri(self.middleware_settings, 'BASE_URI', 'LOCAL_MOESIF_BASEURL')
Configuration.version = 'moesifdjango-python/2.3.6'
Configuration.version = 'moesifdjango-python/2.3.9'
if settings.MOESIF_MIDDLEWARE.get('CAPTURE_OUTGOING_REQUESTS', False):
try:
if self.DEBUG:
Expand Down
2 changes: 1 addition & 1 deletion moesifdjango/middleware_pre19.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(self):
self.client = MoesifAPIClient(self.middleware_settings.get('APPLICATION_ID'))
self.logger_helper = LoggerHelper()
Configuration.BASE_URI = self.logger_helper.get_configuration_uri(self.middleware_settings, 'BASE_URI', 'LOCAL_MOESIF_BASEURL')
Configuration.version = 'moesifdjango-python/2.3.6'
Configuration.version = 'moesifdjango-python/2.3.9'
if settings.MOESIF_MIDDLEWARE.get('CAPTURE_OUTGOING_REQUESTS', False):
try:
if self.DEBUG:
Expand Down

0 comments on commit d03e084

Please sign in to comment.