Kevin Lin
Kevin Lin
## 你确定我们的[常见问题](https://goproxy.cn/faq)页面中没有你想要询问的问题吗? 确定。 ## 当你执行 `go version` 命令后的输出结果是什么? $ go version go version go1.14.6 linux/amd64 ## 当你执行 `go env` 命令后的输出结果是什么? go env 的输出结果 $ go env GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/home/k/.cache/go-build"...
Close pool while invoking Connection.execute, the future returned by Connection.execute will never resolve. ### Anyone can reproduce this issue by doing this: ``` python conn = yield self.db.getconn(False) yield conn.execute("BEGIN;")...
When there are busy connections at the time you invoking **[Pool.close()](https://github.com/FSX/momoko/blob/master/momoko/connection.py#L429)**, after **[close_alive()](https://github.com/FSX/momoko/blob/master/momoko/connection.py#L438)** being called, those busy connections will be put back to `self.dead` of ConnectionContainer at next io_loop iteration...
作者大佬辛苦了,我在本地用go 1.15.2 编译不通过。 命令行输出: ``` main.go:8:2: cannot find package "github.com/shiguanghuxian/etcd-manage/program" in any of: /usr/local/go/src/github.com/shiguanghuxian/etcd-manage/program (from $GOROOT) /home/kevin/go/src/github.com/shiguanghuxian/etcd-manage/program (from $GOPATH) ``` 请问可以把代码切换到使用go mod 模式管理吗?非常感谢。