You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to create a project using litmusctl we get following error:
Unmatched status code:{"error":"invalid_request","errorDescription":"The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed"}
When checking the logs for auth-server I see this in the logs:
{"file":"/go/pkg/mod/github.com/sirupsen/[email protected]/logger.go:192","func":"github.com/sirupsen/logrus.(*Logger).Log","level":"warning","msg":"json: unknown field \"project_name\"","time":"2023-10-16T11:28:38Z"}
This is because the project_name param has been renamed here to projectName. Changing payload to use projectName fixes the problem. Here is an example curl request.
The text was updated successfully, but these errors were encountered:
smitthakkar96
changed the title
Unable to create project when using litmusctl with latest (v3.0.0) version of Litmus
BUG: Unable to create project when using litmusctl with latest (v3.0.0) version of Litmus
Oct 16, 2023
When trying to create a project using litmusctl we get following error:
When checking the logs for auth-server I see this in the logs:
This is because the
project_name
param has been renamed here toprojectName
. Changing payload to useprojectName
fixes the problem. Here is an examplecurl
request.The text was updated successfully, but these errors were encountered: