Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed aws-api ec2 use of filters (#179)
* Fixed aws-api ec2 use of tags The withFilters method of AWS' DescribeInstancesRequest is always a set operation when used with a collection. Ec2TagBasedSimpleServiceDiscovery chains calls to withFilters and ends the chain by passing a collection to the method, which effectively drops all filters previously set. This change merges all ec2 filters in a single java list before building the DescribeInstancesRequest. * Update list syntax
- Loading branch information