You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The migration issue has been closed with release 2.0 (#348), however the migration is incomplete, and Grpc.Core is still being used. Thus using the ZbClient fails on M1 macs.
In this commit ee36df8 a new package was added, but the code hasn't been adjusted to use the new package. Instead, the "Grpc" dependency has not been changed (2.46.6) and still uses Grpc.Core
To Reproduce
Check in IDE - it clearly still refers to Grpc.Core:
or
Try to connect to a Zeebe broker on M1 macs
Expected behavior
The client should not depend on Grpc.Core. The Grpc Nuget package should not be listed in the Client.csproj.
The classes also differ, this is how it should be:
Instead of using "Channel" "GrpcChannel" must be used, instead of using "ChannelOptions" GrpcChannelOptions" must be used
The text was updated successfully, but these errors were encountered:
I migrated to the new Grpc.net.GrpcChannel and had to migrate several other things, but it should be done now. Be aware Grpc.Core will not completely go away, since it contains several utilities which are also used in Grpc.net.
Describe the bug
The migration issue has been closed with release 2.0 (#348), however the migration is incomplete, and Grpc.Core is still being used. Thus using the ZbClient fails on M1 macs.
In this commit ee36df8 a new package was added, but the code hasn't been adjusted to use the new package. Instead, the "Grpc" dependency has not been changed (2.46.6) and still uses Grpc.Core
To Reproduce
Check in IDE - it clearly still refers to Grpc.Core:
or
Try to connect to a Zeebe broker on M1 macs
Expected behavior
The client should not depend on Grpc.Core. The Grpc Nuget package should not be listed in the Client.csproj.
The classes also differ, this is how it should be:
Instead of using "Channel" "GrpcChannel" must be used, instead of using "ChannelOptions" GrpcChannelOptions" must be used
The text was updated successfully, but these errors were encountered: