Skip to content

Commit f73c82a

Browse files
committed
Remove AWS SDKv2
1 parent 9c2f82b commit f73c82a

File tree

4 files changed

+833
-1491
lines changed

4 files changed

+833
-1491
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[![Geek Cell GmbH](https://raw.githubusercontent.com/geekcell/.github/main/geekcell-github-banner.png)](https://www.geekcell.io/)
22

3+
[![Linter](https://github.com/geekcell/github-action-aws-ecs-run-task/actions/workflows/linter.yaml/badge.svg)](https://github.com/geekcell/github-action-aws-ecs-run-task/actions/workflows/linter.yaml)
4+
[![Test](https://github.com/geekcell/github-action-aws-ecs-run-task/actions/workflows/test.yaml/badge.svg)](https://github.com/geekcell/github-action-aws-ecs-run-task/actions/workflows/test.yaml)
5+
[![Check dist/](https://github.com/geekcell/github-action-aws-ecs-run-task/actions/workflows/check-dist.yaml/badge.svg)](https://github.com/geekcell/github-action-aws-ecs-run-task/actions/workflows/check-dist.yaml)
6+
37
<!-- action-docs-description -->
48
## Description
59

dist/index.js

+13-2
Original file line numberDiff line numberDiff line change
@@ -56578,6 +56578,9 @@ const main = async () => {
5657856578
return;
5657956579
}
5658056580

56581+
// Get CWLogsClient
56582+
let CWLogClient = new CloudWatchLogsClient();
56583+
5658156584
// Only create logFilterStream if tailLogs is enabled, and we wait for the task to stop in the pipeline
5658256585
if (tailLogs) {
5658356586
core.debug(`Logging enabled. Getting logConfiguration from TaskDefinition.`)
@@ -56612,7 +56615,6 @@ const main = async () => {
5661256615

5661356616
// Start Live Tail
5661456617
try {
56615-
const CWLogClient = new CloudWatchLogsClient();
5661656618
const response = await CWLogClient.send(new StartLiveTailCommand({
5661756619
logGroupIdentifiers: [logGroupIdentifier],
5661856620
logStreamNames: [logStreamName]
@@ -56645,6 +56647,7 @@ const main = async () => {
5664556647
}
5664656648

5664756649
// Close LogStream and store output
56650+
CWLogClient.destroy();
5664856651
core.setOutput('log-output', logOutput);
5664956652

5665056653
// Describe Task to get Exit Code and Exceptions
@@ -56684,7 +56687,15 @@ async function handleCWResponseAsync(response) {
5668456687
core.error("CWLiveTailSession error: Unknown event type.");
5668556688
}
5668656689
} catch (err) {
56687-
core.error(err.message)
56690+
// If we close the connection, we will get an error with message 'aborted' which we can ignore as it will
56691+
// just show as an error in the logs.
56692+
if (err.message === 'aborted') {
56693+
core.debug("CWLiveTailSession aborted.");
56694+
56695+
return;
56696+
}
56697+
56698+
core.error(err.name + ": " + err.message);
5668856699
}
5668956700
}
5669056701

index.js

+13-2
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ const main = async () => {
130130
return;
131131
}
132132

133+
// Get CWLogsClient
134+
let CWLogClient = new CloudWatchLogsClient();
135+
133136
// Only create logFilterStream if tailLogs is enabled, and we wait for the task to stop in the pipeline
134137
if (tailLogs) {
135138
core.debug(`Logging enabled. Getting logConfiguration from TaskDefinition.`)
@@ -164,7 +167,6 @@ const main = async () => {
164167

165168
// Start Live Tail
166169
try {
167-
const CWLogClient = new CloudWatchLogsClient();
168170
const response = await CWLogClient.send(new StartLiveTailCommand({
169171
logGroupIdentifiers: [logGroupIdentifier],
170172
logStreamNames: [logStreamName]
@@ -197,6 +199,7 @@ const main = async () => {
197199
}
198200

199201
// Close LogStream and store output
202+
CWLogClient.destroy();
200203
core.setOutput('log-output', logOutput);
201204

202205
// Describe Task to get Exit Code and Exceptions
@@ -236,7 +239,15 @@ async function handleCWResponseAsync(response) {
236239
core.error("CWLiveTailSession error: Unknown event type.");
237240
}
238241
} catch (err) {
239-
core.error(err.message)
242+
// If we close the connection, we will get an error with message 'aborted' which we can ignore as it will
243+
// just show as an error in the logs.
244+
if (err.message === 'aborted') {
245+
core.debug("CWLiveTailSession aborted.");
246+
247+
return;
248+
}
249+
250+
core.error(err.name + ": " + err.message);
240251
}
241252
}
242253

0 commit comments

Comments
 (0)