Skip to content

Commit

Permalink
bug 868882 - don't force the versions parameter for the signature url…
Browse files Browse the repository at this point in the history
…s service.
  • Loading branch information
jezdez committed May 21, 2013
1 parent 5e72aa8 commit bbf5b8c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions socorro/external/postgresql/signature_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ def get(self, **kwargs):
missingParams = []
for param in params:
if not params[param]:
if param == 'versions':
# force versions parameter to being 'ALL' if empty
params[param] = 'ALL'
continue
missingParams.append(param)

if len(missingParams) > 0:
Expand Down

0 comments on commit bbf5b8c

Please sign in to comment.