Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunnaye committed Apr 18, 2024
1 parent 8d8381d commit 91f627b
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions upsertGitHubTag/deployment/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,18 +276,17 @@ function logPayloadToS3(body, deliveryId) {
ContentType: "application/json",
});
try {

const response = client.send(command);
console.log(
"Successfully uploaded payload to bucket. DeliveryID: ",
deliveryId,
response
"Successfully uploaded payload to bucket. DeliveryID: ",
deliveryId,
response
);
} catch (err) {
console.error(
"Error uploading payload to bucket. DeliveryID: ",
deliveryId,
err
"Error uploading payload to bucket. DeliveryID: ",
deliveryId,
err
);
}
}
Expand Down

0 comments on commit 91f627b

Please sign in to comment.