You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/cloud
Alex Kessinger 4308ae25c4 Fix a argument mismatch in elasticache
I think in this commit 720aeffca2

There was bug introduced where the ElastiCacheManager init method has
a number of positional arguments like so.

```py
    def __init__(self, module, name, engine, cache_engine_version, node_type,
                 num_nodes, cache_port, parameter_group, cache_subnet_group,
                 cache_security_groups, security_group_ids, zone, wait,
                 hard_modify, region, **aws_connect_kwargs):
```

But then later in the code the positional arguments are passed in
like this.

```py
    elasticache_manager = ElastiCacheManager(module, name, engine,
                                             cache_engine_version, node_type,
                                             num_nodes, cache_port,
                                             cache_subnet_group,
                                             cache_security_groups,
                                             security_group_ids, parameter_group, zone, wait,
                                             hard_modify, region, **aws_connect_kwargs)
```

If you count, you can see that cache_subnet_group, is being passed in
where the manager expects to see parameter_group.
10 years ago
..
amazon Fix a argument mismatch in elasticache 10 years ago
azure ensure password or ssh cert specified 11 years ago
digital_ocean Updating cloud modules with proper github author information 11 years ago
docker Updated PR based on comments 10 years ago
google Delete dead and broken code 11 years ago
linode Updating cloud modules with proper github author information 11 years ago
openstack Merge pull request #250 from saito-hideki/bug/249 10 years ago
rackspace Docs fixes 10 years ago
vmware Merge pull request #1757 from gutoandreollo/devel 10 years ago
__init__.py package files 11 years ago