diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-07-24 18:10:03 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-07-24 18:10:03 -0400 |
| commit | 91105587c2d53199b5e5df89c508305f8efd4e70 (patch) | |
| tree | b954e2750de8feb10888746337ecd89e6b8ea7ff /src/ec2.rs | |
| parent | d2805c075dc5bc83f65e8dc9673e88d2a01bc11d (diff) | |
aws_context is now reliably the first non-self argument, rather than sporadically the last one
Diffstat (limited to 'src/ec2.rs')
| -rw-r--r-- | src/ec2.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,11 +15,11 @@ pub trait Ec2 { } pub async fn instance_recordsets<C>( + aws_context: &C, asg_name: &str, dns_suffix: &Name, dns_ttl: i64, live_instance_ids: &[String], - aws_context: &C, ) -> Result<HashSet<Hashable<ResourceRecordSet>>> where C: Ec2, |
