我正在增强这个Golang项目:https://github.com/webrtc/apprtc/blob/master/src/collider/collider/collider.go

我向Run方法添加了新参数:

// Run starts the collider server and blocks the thread until the program exits.
func (c *Collider) Run(p int, useTls bool, cert string, key string) {
    http.Handle("/ws", websocket.Handler(c.wsHandler))
    http.HandleFunc("/status", c.httpStatusHandler)
    http.HandleFunc("/", c.httpHandler)

    var e error

从main.go调用:

https://github.com/webrtc/apprtc/blob/master/src/collider/collidermain/main.go
// run the program
func (p *program) run() {
    configuration := InitConfiguration()

    log.Printf("Running collider: tls = %t, port = %d, room_server=%s",
                configuration.Tls, configuration.Port, configuration.RoomServer)

    c := collider.NewCollider(configuration.RoomServer)
    c.Run(configuration.Port, configuration.Tls, configuration.Cert, configuration.Key)
}

由于某些原因,我不断收到以下错误:
/usr/local/go/src/collidermain/main.go:84: too many arguments in call to c.Run

我交叉检查了src中:
/usr/local/go/src/collider
/usr/local/go/src/collidermain

一切都好。不知道为什么该错误不断发生。

有什么想法吗?

最佳答案

我终于在卸载go之前修复了它。

我删除了/usr/local/go文件夹并重新安装。

注意:/usr/local/go/collider中的 collider文件夹以前有我的更改,但collidermain仍未正确链接。必须是已缓存的构建中间体吗?

09-25 17:15