You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.error("Image source promise was rejected",{reason: imageSource.reason,userId: user.id});
93
+
thrownewApplicationError(
94
+
ErrorCodes.INTERNAL_SERVER_ERROR,
95
+
"Something went wrong when looking up prebuilds",
96
+
);
97
+
}
98
+
if(recentPrebuilds.status==="rejected"){
99
+
log.error("Prebuild lookup promise was rejected",{reason: recentPrebuilds.reason,userId: user.id});
100
+
thrownewApplicationError(
101
+
ErrorCodes.INTERNAL_SERVER_ERROR,
102
+
"Something went wrong when looking up prebuilds",
103
+
);
104
+
}
90
105
91
106
// traverse prebuilds by commit history instead of their creationTime, so that we don't match prebuilds created for older revisions but triggered later
0 commit comments