There was an error while loading. Please reload this page.
1 parent 008d727 commit 3028820Copy full SHA for 3028820
1 file changed
src/bin/bots/notarizer.cjs
@@ -247,11 +247,8 @@ async function main() {
247
.catch(err => {
248
console.warn(`[${tag}] ${debug ? `(after ${commas(Date.now() - dryRunStart)} msecs) ` : " "}Dry-run failed: ${err}`);
249
metrics.errors += 1;
250
- return null;
+ reject(); // skip notarization
251
});
252
-
253
- // skip notarization if the dry-run failed
254
- if (currentValue === null) reject();
255
256
// compute and evaluate current deviation with respect to last notarized value
257
const deviation = lastUpdates[caption].value > 0
0 commit comments