Skip to content

Commit

Permalink
Update daemon test
Browse files Browse the repository at this point in the history
  • Loading branch information
bjrara committed Jan 22, 2025
1 parent ff1a813 commit f8b8fa2
Show file tree
Hide file tree
Showing 8 changed files with 2,367 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -655,18 +655,19 @@ export class ApplicationSignalsIntegration extends Construct {
if (runtimePlatformObj) {
const runtimePlatform = runtimePlatformObj as ecs.RuntimePlatform;
if (runtimePlatform.operatingSystemFamily) {
isWindows = runtimePlatform.operatingSystemFamily.isWindows();

switch (runtimePlatform.operatingSystemFamily) {
case ecs.OperatingSystemFamily.WINDOWS_SERVER_2019_CORE:
case ecs.OperatingSystemFamily.WINDOWS_SERVER_2019_FULL:
cloudWatchAgentImage = CLOUDWATCH_AGENT_IMAGE_WIN2019;
isWindows = true;
break;
case ecs.OperatingSystemFamily.WINDOWS_SERVER_2022_CORE:
case ecs.OperatingSystemFamily.WINDOWS_SERVER_2022_FULL:
cloudWatchAgentImage = CLOUDWATCH_AGENT_IMAGE_WIN2022;
isWindows = true;
break;
}

if (runtimePlatform.cpuArchitecture) {
cpuArch = runtimePlatform.cpuArchitecture;
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f8b8fa2

Please # to comment.