Skip to content

Commit

Permalink
downgrade pysaml2 to 4.4 to fix login issue; bump version 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
colinxy committed Mar 19, 2020
1 parent 82e39cd commit f704ee2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ var
/iris-relay/docker/logs
/iris-relay/docker/var
/src/iris_relay.egg-info
/src/irisrelay.egg-info
/env
/venv
/ops/packer/output
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
packages=setuptools.find_packages('src'),
include_package_data=True,
install_requires=[
'pysaml2==4.8.0',
'pysaml2==4.4.0',
'PyYAML',
'gevent==1.4.0',
'requests==2.23.0',
Expand Down
2 changes: 1 addition & 1 deletion src/iris_relay/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) LinkedIn Corporation. All rights reserved. Licensed under the BSD-2 Clause license.
# See LICENSE in the project root for license information.

__version__ = '1.2.0'
__version__ = '1.2.1'
2 changes: 1 addition & 1 deletion src/iris_relay/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def on_get(self, req, resp, ical_key):
try:
result = self.oncall_conn.request('GET', '/api/v0/ical/' + ical_key)
except MaxRetryError as ex:
logger.error(ex.reason)
logger.error(ex)
else:
if result.status == 200:
resp.status = falcon.HTTP_200
Expand Down

0 comments on commit f704ee2

Please sign in to comment.