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
There are some errors in our code but it won't caught by the compilers:
cmd/tf-operator/app/server.go:129: unreachable code
exit status 1
dashboard/backend/handler/api_handler.go:36: struct field tfJobs has json tag but is not exported
dashboard/backend/handler/api_handler.go:41: struct field namespaces has json tag but is not exported
exit status 1
You can get them by running:
go vet $(go list ./... | grep -v /vendor/)
The text was updated successfully, but these errors were encountered:
Addressing #395.
There are some errors in our code but it won't caught by the compilers
$ go vet $(go list ./... | grep -v /vendor/)
Output:
cmd/tf-operator/app/server.go:129: unreachable code
exit status 1
dashboard/backend/handler/api_handler.go:36: struct field tfJobs has json tag but is not exported
dashboard/backend/handler/api_handler.go:41: struct field namespaces has json tag but is not exported
exit status 1
There are some errors in our code but it won't caught by the compilers:
You can get them by running:
The text was updated successfully, but these errors were encountered: