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 5957960 commit 62db9ddCopy full SHA for 62db9dd
coderd/parameters.go
@@ -71,7 +71,7 @@ func (api *API) templateVersionDynamicParameters(rw http.ResponseWriter, r *http
71
72
major, minor, err := apiversion.Parse(tf.ProvisionerdVersion)
73
// If the api version is not valid or less than 1.5, we need to use the static parameters
74
- useStaticParams := err != nil || major < 1 || (major == 1 && minor < 5)
+ useStaticParams := err != nil || major < 1 || (major == 1 && minor < 6)
75
if useStaticParams {
76
api.handleStaticParameters(rw, r, templateVersion.ID)
77
} else {
0 commit comments