1

我试过以下代码:

addresses, error := net.LookupHost("google.com")

在常规 Go 和 Google App Engine SDK 中,它通常可以正常工作。

但是在生产 GAE 实例中,它会产生以下错误:

error reading DNS config: open /etc/resolv.conf: operation not permitted

这会解决吗,有解决方法吗,我可以更改app.yaml配置等中的任何内容吗?

4

1 回答 1

4

您需要使用 AppEngine API:

请注意,您还需要一个上下文。

于 2013-09-06T13:58:24.977 回答