AlexStocks commented on code in PR #1058: URL: https://github.com/apache/dubbo-go-samples/pull/1058#discussion_r2990635824
########## graceful_shutdown/go.mod: ########## @@ -0,0 +1,148 @@ +module github.com/apache/dubbo-go-samples/graceful_shutdown + +go 1.25.0 + +require ( Review Comment: [P1] 这个子模块在干净环境里现在是不能直接编译的。我本地进入 `graceful_shutdown` 后执行 `go test ./...`,会报一串 `missing go.sum entry for module providing package dubbo.apache.org/dubbo-go/v3/...`,说明提交里的 `go.mod/go.sum` 没有 tidy 完整。建议在子模块目录补一次 `go mod tidy`,把 `dubbo-go/v3` 相关依赖的校验条目补齐后再提交。 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
