Closed santhosh-tekuri closed 9 years ago
denominator-pull-requests #385 SUCCESS This pull request looks good
NetflixOSS » denominator » denominator-pull-requests #10 SUCCESS This pull request looks good
thanks for raising this! hadn't run into it, but I can see what's going on. I left comments on #280
closed via e6dfb6c175385af900d3a4a012e342ab8030dc71
MapCredenitals
are converted toList<Object>
by providers using:current implementation of this method, simply takes returns
new ArrayList<Object>(map.values())
note that, in map order of entries is not defined. so credential parameters might be in wrong order;
you can verify the same by following test:
the above code fails to list zones. but if
accessKey
is inserted beforesecretKey
, then it worksI fixed the issue in my fork branch
map-credentials
: https://github.com/santhosh-tekuri/denominator/tree/map-credentialsplease evaluate the fix and merge