Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dde7ad8

Browse files
committed
fixup! feat: add coder loadtest command
1 parent 4839db7 commit dde7ad8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

cli/loadtest.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,11 @@ func loadtest() *cobra.Command {
2626
cmd := &cobra.Command{
2727
Use: "loadtest --config <path>",
2828
Short: "Load test the Coder API",
29-
Long: "",
30-
Args: cobra.ExactArgs(0),
29+
// TODO: documentation and a JSON scheme file
30+
Long: "Perform load tests against the Coder server. The load tests " +
31+
"configurable via a JSON file.",
32+
Hidden: true,
33+
Args: cobra.ExactArgs(0),
3134
RunE: func(cmd *cobra.Command, args []string) error {
3235
if configPath == "" {
3336
return xerrors.New("config is required")

0 commit comments

Comments
 (0)