diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-07-24 19:26:45 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-07-24 19:26:45 -0400 |
| commit | e872bcdc978283b45da22a4de5ed195dce613a71 (patch) | |
| tree | 6a7c7813e52e5c546cc6f187e12b5f5bdca42f6e /src/dns.rs | |
| parent | 77642df3e17b5272617c48832f37b7ab3dd6f27b (diff) | |
Upgrade AWS libraries.
This comes with some substantial removals, because the AWS libs no longer treat every last field as optional when it's inappropriate to do so. Hooray!
Diffstat (limited to 'src/dns.rs')
| -rw-r--r-- | src/dns.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ impl TryFrom<&AutoScalingGroup> for AutoScalingGroupConfig { .ok_or(anyhow!("Autoscaling group returned from AWS with no name"))? .to_owned(); - let instances = autoscaling_group.instances().unwrap_or(&[]); + let instances = autoscaling_group.instances(); let live_instance_ids = Self::live_instance_ids(instances); |
