From b64ea24fff9701389af2d1aa846d106a9f1ee518 Mon Sep 17 00:00:00 2001 From: Teo Gebhard Date: Mon, 8 Dec 2025 14:00:10 +0200 Subject: [PATCH 1/2] value is required --- packages/cli-tools/bin/streamr-stream-subscribe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli-tools/bin/streamr-stream-subscribe.ts b/packages/cli-tools/bin/streamr-stream-subscribe.ts index 5bd24a590c..e0818ec184 100755 --- a/packages/cli-tools/bin/streamr-stream-subscribe.ts +++ b/packages/cli-tools/bin/streamr-stream-subscribe.ts @@ -44,7 +44,7 @@ createClientCommand(async (client: StreamrClient, streamId: string, options: Opt }) .arguments('') .description('subscribe to a stream, prints JSON messages to stdout line-by-line') - .option('-p, --partition [partition]', 'partition', createFnParseInt('--partition'), 0) + .option('-p, --partition ', 'partition', createFnParseInt('--partition'), 0) .option('-d, --disable-ordering', 'disable ordering of messages by OrderingUtil', false) .option('-r, --raw', 'subscribe raw', false) .option('-m, --with-metadata', 'print each message with its metadata included', false) From 557937cabf81bb71812f50a383f019c24aa0890a Mon Sep 17 00:00:00 2001 From: Teo Gebhard Date: Mon, 8 Dec 2025 14:15:05 +0200 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d48257255..26916630d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,7 @@ Changes before Tatum release are not documented in this file. #### Fixed - Signature output in `subscribe --with-metadata` (https://github.com/streamr-dev/network/pull/3245) +- Error handling of `--partition` flag in `subscribe` (https://github.com/streamr-dev/network/pull/3263) #### Security