From 71db3c81173fb992536132ac6ca049a1b8511f48 Mon Sep 17 00:00:00 2001 From: parthkirsan Date: Tue, 26 Aug 2025 19:14:46 +0530 Subject: [PATCH 1/2] add upload cli logs via lsrs in stop endpoint --- src/lib/server.ts | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/lib/server.ts b/src/lib/server.ts index 0f0ef21..fb8ca80 100644 --- a/src/lib/server.ts +++ b/src/lib/server.ts @@ -7,6 +7,7 @@ import { validateSnapshot } from './schemaValidation.js' import { pingIntervalId } from './utils.js'; import { startPolling } from './utils.js'; +const uploadDomToS3ViaEnv = process.env.USE_LAMBDA_INTERNAL || false; export default async (ctx: Context): Promise> => { const server: FastifyInstance = fastify({ @@ -105,8 +106,16 @@ export default async (ctx: Context): Promise Date: Tue, 26 Aug 2025 19:14:54 +0530 Subject: [PATCH 2/2] 4.1.26 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 33d580d..320344a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lambdatest/smartui-cli", - "version": "4.1.25", + "version": "4.1.26", "description": "A command line interface (CLI) to run SmartUI tests on LambdaTest", "files": [ "dist/**/*"