我在 Ubuntu 14.04.1 LTS 上遇到了 heroku 工具包的问题。每当我运行任何 heroku 命令时,我都会得到以下信息:
panic: user: Current not implemented on linux/amd64
goroutine 1 [running]:
main.homeDir(0x0, 0x0)
/Users/jdickey/src/github.com/heroku/heroku-cli/filesystem.go:17 +0x75
main.init()
/Users/jdickey/src/github.com/heroku/heroku-cli/filesystem.go:9 +0x148
goroutine 2 [runnable]:
runtime.forcegchelper()
/usr/local/Cellar/go/1.4/libexec/src/runtime/proc.go:90
runtime.goexit()
/usr/local/Cellar/go/1.4/libexec/src/runtime/asm_amd64.s:2232 +0x1
goroutine 3 [runnable]:
runtime.bgsweep()
/usr/local/Cellar/go/1.4/libexec/src/runtime/mgc0.go:82
runtime.goexit()
/usr/local/Cellar/go/1.4/libexec/src/runtime/asm_amd64.s:2232 +0x1
goroutine 4 [runnable]:
runtime.runfinq()
/usr/local/Cellar/go/1.4/libexec/src/runtime/malloc.go:712
runtime.goexit()
/usr/local/Cellar/go/1.4/libexec/src/runtime/asm_amd64.s:2232 +0x1
goroutine 5 [runnable]:
github.com/stvp/rollbar.func·001()
/Users/jdickey/src/github.com/stvp/rollbar/rollbar.go:73
created by github.com/stvp/rollbar.init·1
/Users/jdickey/src/github.com/stvp/rollbar/rollbar.go:78 +0x5f
error loading plugin topics
panic: user: Current not implemented on linux/amd64
goroutine 1 [running]:
main.homeDir(0x0, 0x0)
/Users/jdickey/src/github.com/heroku/heroku-cli/filesystem.go:17 +0x75
main.init()
/Users/jdickey/src/github.com/heroku/heroku-cli/filesystem.go:9 +0x148
goroutine 2 [runnable]:
runtime.forcegchelper()
/usr/local/Cellar/go/1.4/libexec/src/runtime/proc.go:90
runtime.goexit()
/usr/local/Cellar/go/1.4/libexec/src/runtime/asm_amd64.s:2232 +0x1
goroutine 3 [runnable]:
runtime.bgsweep()
/usr/local/Cellar/go/1.4/libexec/src/runtime/mgc0.go:82
runtime.goexit()
/usr/local/Cellar/go/1.4/libexec/src/runtime/asm_amd64.s:2232 +0x1
goroutine 4 [runnable]:
runtime.runfinq()
/usr/local/Cellar/go/1.4/libexec/src/runtime/malloc.go:712
runtime.goexit()
/usr/local/Cellar/go/1.4/libexec/src/runtime/asm_amd64.s:2232 +0x1
goroutine 5 [runnable]:
github.com/stvp/rollbar.func·001()
/Users/jdickey/src/github.com/stvp/rollbar/rollbar.go:73
created by github.com/stvp/rollbar.init·1
/Users/jdickey/src/github.com/stvp/rollbar/rollbar.go:78 +0x5f
error loading plugin commands
我的用户帐户不是 jdickey,而且我使用的是 Linux,而不是 OS X。所以在我看来,作为一名程序员,在 heroku 工具带代码中编译了一些工件。这似乎表明“go”库存在某种问题。
无论我尝试使用什么 heroku 命令,除了该命令生成的任何其他消息之外,它还会发出此信息。命令似乎也永远不会在进程崩溃之前完成执行。
所以我的问题是:有没有其他人看到这个,有没有人确定了解决方法或修复?有没有办法将其作为错误提交给 Heroku 开发团队?任何建议将不胜感激,因为这会影响我完成工作的能力。
最佳答案
这是一个已在此处解决的错误 https://github.com/heroku/heroku-cli/commit/201ed5dc774e9f7ee256e80e16c19f6504b36e3f
不幸的是,这里的插件组件可能无法自动更新,因此您可能需要手动删除 ~/.heroku/heroku-cli
以修复它。
顺便说一下,你在回溯中看到我的用户名的原因是因为 Go 是这样编译的。不过,这是我们正在努力解决的问题。
关于ubuntu - heroku-toolbelt 3.23.3 在 Ubuntu 上损坏,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28013024/