From 939b1ae5cf9be051bf3c64519b98b6d09840903e Mon Sep 17 00:00:00 2001 From: Daniel Shashko Date: Wed, 22 Jul 2026 19:32:19 +0300 Subject: [PATCH] fix(status): add missing space in --timeout help text `status --help` rendered "600 orBRIGHTDATA_POLLING_TIMEOUT" because the two concatenated string literals had no separating space. --- src/commands/status.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/status.ts b/src/commands/status.ts index 4c87d9a..a83861d 100644 --- a/src/commands/status.ts +++ b/src/commands/status.ts @@ -113,7 +113,7 @@ const status_command = new Command('status') .argument('', 'Snapshot ID returned by trigger request') .option('--wait', 'Poll until the job is complete') .option('--timeout ', - 'Polling timeout in seconds (default: 600 or' + + 'Polling timeout in seconds (default: 600 or ' + 'BRIGHTDATA_POLLING_TIMEOUT)') .option('-o, --output ', 'Write output to file') .option('--json', 'Force JSON output')