Skip to content

Commit

Permalink
Try updating platform query
Browse files Browse the repository at this point in the history
  • Loading branch information
gcbeattyAWS committed Nov 11, 2024
1 parent d0464a1 commit 589d9b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AWS.Deploy.Orchestration/Data/AWSResourceQueryer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ public async Task<List<PlatformSummary>> GetElasticBeanstalkPlatformArns(string?
if (string.IsNullOrEmpty(version.PlatformCategory) || string.IsNullOrEmpty(version.PlatformBranchLifecycleState))
continue;

if (!version.PlatformBranchLifecycleState.Equals("Supported"))
if (!(version.PlatformBranchLifecycleState.Equals("Supported") || version.PlatformBranchLifecycleState.Equals("Deprecated")))
continue;

platformVersions.Add(version);
Expand Down

0 comments on commit 589d9b9

Please sign in to comment.