Skip to content

Commit

Permalink
fix flag name
Browse files Browse the repository at this point in the history
  • Loading branch information
gammazero committed Oct 2, 2024
1 parent cbfe6fe commit 6699e30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ Generate an identity seed and launch a gateway:
Usage: "Count of L0 files necessary to trigger an L0 compaction",
},
&cli.IntFlag{
Name: "pebble-l0=stop-writes-threshold",
Name: "pebble-l0-stop-writes-threshold",
Value: 0,
EnvVars: []string{"PEBBLE_L0_STOP_WRITES_THRESHOLD"},
Usage: "Limit on L0 read-amplification, computed as the number of L0 sublevels",
Expand Down Expand Up @@ -526,7 +526,7 @@ share the same seed as long as the indexes are different.
BytesPerSync: cctx.Int("pebble-bytes-per-sync"),
DisableWAL: cctx.Bool("pebble-disable-wal"),
L0CompactionThreshold: cctx.Int("pebble-l0-compaction-threshold"),
L0StopWritesThreshold: cctx.Int("pebble-l0=stop-writes-threshold"),
L0StopWritesThreshold: cctx.Int("pebble-l0-stop-writes-threshold"),
LBaseMaxBytes: cctx.Int64("pebble-lbase-max-bytes"),
MemTableSize: cctx.Uint64("pebble-mem-table-size"),
MemTableStopWritesThreshold: cctx.Int("pebble-mem-table-stop-writes-threshold"),
Expand Down

0 comments on commit 6699e30

Please sign in to comment.