Skip to content

Commit

Permalink
append query string to the end of calendar relay url (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
colinxy authored Apr 23, 2020
1 parent 5651fe0 commit fd54b23
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/iris_relay/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ def on_get(self, req, resp, ical_key):
"""
try:
path = self.base_url + '/api/v0/ical/' + ical_key
if req.query_string:
path += '?%s' % req.query_string
result = self.oncall_client.get(path)
except MaxRetryError as ex:
logger.error(ex)
Expand Down

0 comments on commit fd54b23

Please sign in to comment.