Merge pull request #2482 from Dokploy/2470-post-rediscreate-returns-true-instead-of-the-redis-payload

fix(redis): return newRedis object instead of true in redis router
This commit is contained in:
Mauricio Siu
2025-08-28 18:43:04 -06:00
committed by GitHub

View File

@@ -80,7 +80,7 @@ export const redisRouter = createTRPCRouter({
type: "volume",
});
return true;
return newRedis;
} catch (error) {
throw error;
}