Skip to content

Commit

Permalink
Update daemon test
Browse files Browse the repository at this point in the history
  • Loading branch information
bjrara committed Feb 24, 2025
1 parent 3b6989a commit 7251503
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 7251503

Please # to comment.