Skip to content

Commit

Permalink
fix(studio): cli help message for batchSize and flushInterval
Browse files Browse the repository at this point in the history
  • Loading branch information
cesconix committed Sep 2, 2024
1 parent f7dc713 commit 06e7ae4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/red-eyes-guess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"pinorama-studio": patch
---

fix cli help message for batchSize and flushInterval
4 changes: 2 additions & 2 deletions packages/pinorama-studio/cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ async function start(options) {
-f, --server-db-path Set Pinorama Server db filepath (default: TMPDIR/pinorama.msp).
-k, --server-admin-secret Set Pinorama Server admin secret key (default: ${defaultOptions["admin-secret"]}).
-p, --preset Use a predefined config preset (default: ${defaultOptions.preset}).
-b, --batch-size Set batch size for transport (default: ${defaultOptions.batchSize}).
-f, --flush-interval Set flush wait time in ms (default: ${defaultOptions.flushInterval}).
-b, --batch-size Set batch size for transport (default: ${defaultOptions["batch-size"]}).
-f, --flush-interval Set flush wait time in ms (default: ${defaultOptions["flush-interval"]}).
Examples:
pinorama --open
Expand Down

0 comments on commit 06e7ae4

Please sign in to comment.