Skip to content

Commit 00f86cb

Browse files
authored
Merge pull request #649 from Merit-Systems/master
release log shortening
2 parents 3f46a1c + 2529be2 commit 00f86cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎packages/app/server/src/services/facilitator/facilitatorRetry.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export async function facilitatorWithRetry<
152152
}
153153

154154
const errorDetails = errors
155-
.map(e => `${e.facilitator}: ${e.error}`)
155+
.map(e => `${e.facilitator}: ${e.error.slice(0, 20)}`)
156156
.join('; ');
157157
throw new Error(`All facilitators failed for ${method}: ${errorDetails}`);
158158
}

0 commit comments

Comments
 (0)