Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunnaye committed Apr 16, 2024
1 parent d176c4a commit cdb6b7d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions upsertGitHubTag/deployment/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,17 @@ function processEvent(event, callback) {
function logPayloadToS3(command, deliveryId) {
try {
const response = client.send(command);
console.log("Successfully uploaded payload to bucket. DeliveryID: ", deliveryId, response);
console.log(
"Successfully uploaded payload to bucket. DeliveryID: ",

Check failure on line 280 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`

Check failure on line 280 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`
deliveryId,

Check failure on line 281 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`

Check failure on line 281 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`
response

Check failure on line 282 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`

Check failure on line 282 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`
);
} catch (err) {
console.error("Error uploading payload to bucket. DeliveryID: ", deliveryId, err);
console.error(
"Error uploading payload to bucket. DeliveryID: ",

Check failure on line 286 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`

Check failure on line 286 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`
deliveryId,

Check failure on line 287 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`

Check failure on line 287 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`
err

Check failure on line 288 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`

Check failure on line 288 in upsertGitHubTag/deployment/index.js

View workflow job for this annotation

GitHub Actions / linterWithESLint

Delete `··`
);
}
}
// Handle response from Dockstore webservice
Expand Down

0 comments on commit cdb6b7d

Please sign in to comment.