René Jochum
René Jochum
Can you please be more explicit?
The only solution for that I see is either make ZooKeeper check the service (TCP port check) or by adding a 3rd party service that deregister's services which aren't there...
Still working on that? Any chance to give more context?
Hey @gzhhong / James, just switch the clients DefaultContentType to "application/proto". I would as well switch server AND client to gRPC. Let me know when you need help. Kind Regards,...
Hi @tttao7 , I recommend something like (untested): ```go package main import ( "go-micro.dev/v4" grpcClient "github.com/go-micro/plugins/v4/client/grpc" grpcServer "github.com/go-micro/plugins/v4/server/grpc" ) func main() { service := micro.NewService( micro.Name("greeter"), micro.Server(grpcServer.NewServer()), micro.Client(grpcClient.NewClient(client.ContentType("application/protobuf"))), ) }...
Works on my ArchLinux box as intended.
Hey @TylerJang27 thanks for answering. I found the root cause. It was half working IPv6. Once I disabled IPv6 on my link everything worked as intended. So with broken IPv6...
@Davincible @xpunch
It started because "linux-arm64" isn't available from the website, which means `setup-flutter` also doesn't have it. Main reason is to have exact the same environment in CI as in Development....