Monet Lee
Monet Lee
Try update version to v3.8.3.patch-5. The web-front version is outdated. This could potentially fix the issue.
This problem is solve in latest Server and Chat. Plz update to latest version.
This issue has been resolved in v3.8.3-patch.3. Please update to this version.
userID need should be imAdminUserID field value in `config/share.yml`
我看了一下Issue和对应的PR,我感觉改的有点Breaking change了,不太能持续发展。 我通过复现了几种情况,认为删除 `go get github.com/google/wire/cmd/wire@latest` 和 `go mod tidy`是不可取的,因为当后续版本迭代,这无法预计后续内容。 在末尾添加`go mod tidy`我是认同的,不然无法执行后续的 `go build `和 `kratos run` 我的建议是 这个PR进行常规的 `go get` 更新各个依赖的版本,然后在 `makefile`里面的generate 末尾只添加`go mod tidy` 同时我也提了一个PR,将 project crate...
其实你说的基本都是对的,昨晚和朋友@alilestera花了些时间把这些情况都复现了一下,要是有问题也请轻喷。 首先先从issue的问题开始,为什么会出现这个问题呢,其实和wire的版本关系不大,或者说不是重点。因为主要的问题是在执行wire的cmd,在项目中并没有被导入,所以导致了`go mod tidy`,他就会被干掉。所以在`go generate`,或者说 `go run `的时候会缺少依赖包。wire真正的问题是在于 使用go 1.22.2时,wire v0.5.0 会发生panic。 ```shell go generate ./... panic: runtime error: invalid memory address or nil pointer dereference [recovered] panic: runtime error:...
Try to update the Server version to the latest, version 3.5 is no longer supported now. Chat and the SDK of the corresponding client also need to be updated
WatchName is pass to [NewDiscoveryRegister](https://github.com/openimsdk/open-im-server/blob/main/pkg/common/startrpc/start.go#L104) to registered. You need send `watchname` args when you use `discov.GetConns`. Like https://github.com/openimsdk/open-im-server/blob/main/internal/api/user.go#L79.
I've confirmed the issue exists; the Admin side was missing the corresponding parameters during the request. We will make the modification; thanks for your feedback.
> It seems to be effective. Does he check the entire code every time? Also, can we directly comment on the issue in the PR, otherwise we still need to...