cloudendpoints / endpoints-python

A Python framework for building RESTful APIs on Google App Engine
Apache License 2.0
51 stars 17 forks source link

Params sequence changed for all functions in the generated library after upgrading endpoints to 4.8 #193

Open walnut-kunal opened 5 years ago

walnut-kunal commented 5 years ago

e.g for a function search(string a , int b, int c) in the new library the function looks like search(int c, int b, string a). we have a app using older library with the params sequence shown in the first example. this change will need the app to refactor all the functions. is there any way of going back to the original sequence of params ?

Thanks.

walnut-kunal commented 5 years ago

Realised today that the params are now alphabetically sorted by name and not just random seqeunce