exoscale / cs

A simple, yet powerful CloudStack API client for python and the command-line.
BSD 3-Clause "New" or "Revised" License
88 stars 36 forks source link

case sensitive pagesize is set twice #51

Closed greut closed 6 years ago

greut commented 6 years ago

cs sends pagesize=500 and the other ones, and then CloudStack works its magic to pick one.

$ cs listTemplates templatefilter=featured pageSize=1 page=0 | jq ".template|length"
1
$ cs listTemplates templatefilter=featured PageSize=1 page=0 | jq ".template|length"
236

idea?, https://github.com/requests/requests/blob/master/requests/structures.py#L15