Skip to content
This repository was archived by the owner on Oct 25, 2023. It is now read-only.

Commit 34f4fd0

Browse files
committed
release v1.0.11
1 parent 6e35a85 commit 34f4fd0

File tree

10 files changed

+1699
-4328
lines changed

10 files changed

+1699
-4328
lines changed

deployment/document-understanding-cicd/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ exports.handler = async (event, context) => {
161161

162162
Logger.log(
163163
Logger.levels.ROBUST,
164-
`Commit successful, resp is ${resp}`
164+
`Commit successful, resp is ${JSON.stringify(resp)}`
165165
);
166166

167167
parentCommitId = resp.commitId;
@@ -170,15 +170,15 @@ exports.handler = async (event, context) => {
170170
} catch (ex) {
171171
Logger.log(
172172
Logger.levels.ROBUST,
173-
`It failed, continuing, error is: ${ex}`
173+
`It failed on ${JSON.stringify(
174+
codeCommitParams
175+
)}, \n continuing, error is: ${ex}`
174176
);
175177

176178
resp = "failed";
177179
// Avoiding throttling
178180
await new Promise((r) => setTimeout(r, 5000));
179181
}
180-
181-
// parentCommitId = resp.commitId;
182182
}
183183

184184
const _responseData = {

0 commit comments

Comments
 (0)