From adb5084e743f0fc73ae1f61627abbd84a03a515f Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 19 Sep 2024 18:15:42 +0530 Subject: [PATCH] feat: pass retries --- server/src/routes/storage.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/src/routes/storage.ts b/server/src/routes/storage.ts index 4c842bf4..1dea9b9c 100644 --- a/server/src/routes/storage.ts +++ b/server/src/routes/storage.ts @@ -1,6 +1,6 @@ /** * RESTful API endpoints handling the recording storage. - */ +*/ import { Router } from 'express'; import logger from "../logger"; @@ -190,6 +190,7 @@ router.post('/runs/run/:fileName/:runId', async (req, res) => { name: parsedRun.name, runId: req.params.runId, status: 'pending', + retries: 5, }; return;