sort querystring so that tags will get matched up properly for later zip. Closes #541.
This commit is contained in:
parent
a9d161e58e
commit
941d057146
1 changed files with 1 additions and 1 deletions
|
|
@ -234,7 +234,7 @@ class ELBResponse(BaseResponse):
|
|||
tag_values = []
|
||||
tag_keys = []
|
||||
|
||||
for t_key, t_val in self.querystring.items():
|
||||
for t_key, t_val in sorted(self.querystring.items()):
|
||||
if t_key.startswith('Tags.member.'):
|
||||
if t_key.split('.')[3] == 'Key':
|
||||
tag_keys.extend(t_val)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue