Bug Report Checklist
Description
Given a parameter of type array with a default value defined, the Go generator produces invalid code:
else {
var defaultValue []string = [port, virtual_network]
r.include = &defaultValue
}
A valid form of the above code would look like this:
else {
var defaultValue []string = []string{"port", "virtual_network"}
r.include = &defaultValue
}
openapi-generator version
v7.8.0, but this issue was introduced by #15127 and has existed since roughly v7.0.1.
OpenAPI declaration file content or url
- in: query
name: include
schema:
default:
- port
- virtual_network
items:
type: string
type: array
style: form
Generation Details
Steps to reproduce
Related issues/PRs
Suggest a fix
Bug Report Checklist
Description
Given a parameter of type array with a default value defined, the Go generator produces invalid code:
A valid form of the above code would look like this:
openapi-generator version
v7.8.0, but this issue was introduced by #15127 and has existed since roughly v7.0.1.
OpenAPI declaration file content or url
Generation Details
Steps to reproduce
Related issues/PRs
Suggest a fix