Skip to content

Commit

Permalink
Merge commit 'bc883a4' into sync_up_main
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd committed Jul 18, 2024
2 parents 482ece3 + bc883a4 commit a5cf090
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ AlignEscapedNewlines: Right
AlignOperands: false
AlignTrailingComments: true
AllowShortIfStatementsOnASingleLine: true
AllowShortBlocksOnASingleLine: true
AllowShortCaseLabelsOnASingleLine: false
# AllowShortFunctionsOnASingleLine: InlineOnly
# AllowShortLoopsOnASingleLine: false
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class NuRaftMesgConan(ConanFile):
name = "nuraft_mesg"
version = "3.5.2"
version = "3.5.3"

homepage = "https://github.com/eBay/nuraft_mesg"
description = "A gRPC service for NuRAFT"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/manager_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void ManagerImpl::restart_server() {
RELEASE_ASSERT(_mesg_service, "Need to call ::start() first!");
sisl::GrpcServer* tmp_server = nullptr;
try {
tmp_server = sisl::GrpcServer::make(listen_address, _start_params.token_verifier_,
tmp_server = sisl::GrpcServer::make(listen_address, start_params_.token_verifier_,
NURAFT_MESG_CONFIG(grpc_server_thread_cnt), start_params_.ssl_key_,
start_params_.ssl_cert_, start_params_.max_message_size_);
} catch (std::runtime_error const& e) {
Expand Down

0 comments on commit a5cf090

Please sign in to comment.