Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/cli-tools/bin/streamr-stream-subscribe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ createClientCommand(async (client: StreamrClient, streamId: string, options: Opt
})
.arguments('<streamId>')
.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>', '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)
Expand Down