We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When using the vultr-cli load-balancer rule create ... command, it returns "bad request":
vultr-cli load-balancer rule create ...
vultr-cli load-balancer rule create eadd59b0-ffe2-45a9-976d-c9faa0a1491f --backend-port=8800 --frontend-port=1230 error listing load balancer rules : {"error":"Bad request.","status":400} exit status 1
To Reproduce Steps to reproduce the behavior:
rule create
Expected behavior Looking at the code:
options := &govultr.ForwardingRule{} rule, _, err := client.LoadBalancer.CreateForwardingRule(context.Background(), id, options) if err != nil { fmt.Printf("error listing load balancer rules : %v\n", err) os.Exit(1) }
It doesn't appear to read any of the flag and is only passing an empty struct of load balancer options. The result is a malformed request.
The text was updated successfully, but these errors were encountered:
optik-aper
No branches or pull requests
Describe the bug
When using the
vultr-cli load-balancer rule create ...
command, it returns "bad request":To Reproduce
Steps to reproduce the behavior:
rule create
commandExpected behavior
Looking at the code:
It doesn't appear to read any of the flag and is only passing an empty struct of load balancer options. The result is a malformed request.
The text was updated successfully, but these errors were encountered: