Skip to content

Commit

Permalink
fix(12782): display actual error msg for failed mr creation (#3444)
Browse files Browse the repository at this point in the history
Signed-off-by: gitdallas <5322142+gitdallas@users.noreply.github.com>
  • Loading branch information
gitdallas authored Nov 8, 2024
1 parent 429d339 commit 3658290
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion backend/src/routes/api/modelRegistries/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { FastifyReply, FastifyRequest } from 'fastify';
import { secureAdminRoute } from '../../../utils/route-security';
import { KubeFastifyInstance, ModelRegistryKind, RecursivePartial } from '../../../types';
import createError from 'http-errors';
import {
createModelRegistryAndSecret,
deleteModelRegistryAndSecret,
Expand Down Expand Up @@ -61,7 +62,9 @@ export default async (fastify: KubeFastifyInstance): Promise<void> => {
modelRegistryNamespace,
databasePassword,
!!dryRun,
);
).catch((e) => {
throw createError(e.statusCode, e?.body?.message);
});
} catch (e) {
fastify.log.error(
`ModelRegistry ${modelRegistry.metadata.name} could not be created, ${
Expand Down

0 comments on commit 3658290

Please sign in to comment.