Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4839db7 commit dde7ad8Copy full SHA for dde7ad8
cli/loadtest.go
@@ -26,8 +26,11 @@ func loadtest() *cobra.Command {
26
cmd := &cobra.Command{
27
Use: "loadtest --config <path>",
28
Short: "Load test the Coder API",
29
- Long: "",
30
- Args: cobra.ExactArgs(0),
+ // TODO: documentation and a JSON scheme file
+ 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),
34
RunE: func(cmd *cobra.Command, args []string) error {
35
if configPath == "" {
36
return xerrors.New("config is required")
0 commit comments