Per Mattermost guidelines, GitHub issues are for bug reports: http://www.mattermost.org/filing-issues/.
For troubleshooting see: http://forum.mattermost.org/.
For feature proposals see: http://www.mattermost.org/feature-requests/
If you've found a bug--something appears unintentional--please follow these steps:
Bug report in one concise sentence
How can we reproduce the issue (what version are you using?)
Describe your issue in detail
What did you see happen? Please include relevant error messages and/or screenshots.
If you can, link to the line of code that might be responsible for the problem
@nsingxia Are you open to sharing the information above (steps to reproduce, expected and observed behaviour)? This will make it easier for us to troubleshoot the issue.
I bumped into the same issue after cloning https://github.com/mattermost/mmctl and running make test
. It also happened when running make build
, go mod tidy
and go mod vendor
.
A search brought me to https://community.k6.io/t/building-from-source-seems-to-thrown-an-exception/876/2, which suggested upgrading my golang install. It made sense because the test/build commands succeed for other mmctl
developers, which indicated the error had something to do with my go set up. I was using 1.13.8 and had been thinking of upgrading for a some time.
I upgraded my go install to 1.15.2
and everything works fine now. Hope this helps anyone else that bumps into this error.
Most helpful comment
I bumped into the same issue after cloning https://github.com/mattermost/mmctl and running
make test
. It also happened when runningmake build
,go mod tidy
andgo mod vendor
.A search brought me to https://community.k6.io/t/building-from-source-seems-to-thrown-an-exception/876/2, which suggested upgrading my golang install. It made sense because the test/build commands succeed for other
mmctl
developers, which indicated the error had something to do with my go set up. I was using 1.13.8 and had been thinking of upgrading for a some time.I upgraded my go install to
1.15.2
and everything works fine now. Hope this helps anyone else that bumps into this error.