Skip to content

Commit

Permalink
Update gRPC version to 1.58
Browse files Browse the repository at this point in the history
  • Loading branch information
Umesh-k26 committed May 13, 2024
1 parent 0767f69 commit 5904cea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions MLModelRunner/C/PipeModelRunnerCWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ PipeModelRunnerWrapper *createPipeModelRunner(const char *OutboundName,
const char *InboundName,
int SerDesType) {
PipeModelRunnerWrapper *obj = new PipeModelRunnerWrapper();
obj->model = new PipeModelRunner(OutboundName, InboundName,
(BaseSerDes::Kind)SerDesType);
obj->model =
new PipeModelRunner(OutboundName, InboundName, (SerDesKind)SerDesType);
return obj;
}

Expand Down
2 changes: 1 addition & 1 deletion MLModelRunner/gRPCModelRunner/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ endif()
# Find gRPC installation
# Looks for gRPCConfig.cmake file installed by gRPC's cmake installation.

find_package(gRPC 1.34.0 EXACT CONFIG REQUIRED)
find_package(gRPC 1.58.0 EXACT CONFIG REQUIRED)
message(STATUS "Using gRPC ${gRPC_VERSION}")

set(_GRPC_GRPCPP gRPC::grpc++)
Expand Down

0 comments on commit 5904cea

Please sign in to comment.