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
The conductor/grpc/build.gradle is now handling different ISAs, there is no need to manually update for Mac users
The below NOTE should be removed-
NOTE for Mac users: If you are using a new Mac with an Apple Silicon Chip, you must make a small change to conductor/grpc/build.gradle - adding "osx-x86_64" to two lines:
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:${revProtoBuf}:osx-x86_64"
}
plugins {
grpc {
artifact = "io.grpc:protoc-gen-grpc-java:${revGrpc}:osx-x86_64"
}
}
...
}
What are you missing in the docs
Building Conductor From Source section in https://conductor.netflix.com/devguide/running/source.html needs to be corrected.
Proposed text
The conductor/grpc/build.gradle is now handling different ISAs, there is no need to manually update for Mac users
The below NOTE should be removed-