Skip to content

Commit

Permalink
Merge branch 'hotfix/2.10.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoblath committed Jan 14, 2025
2 parents 5ee2056 + 86d3079 commit 88e23fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required (VERSION 3.12)
#########

cmake_policy( SET CMP0048 NEW ) # version in project()
project( Dripline VERSION 2.10.0 )
project( Dripline VERSION 2.10.1 )

list( APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/scarab/cmake )

Expand All @@ -33,8 +33,8 @@ set ( Dripline_PYTHON_THROW_REPLY_KEYWORD "ThrowReply" CACHE STRING "Keyword use

set( Dripline_MAX_PAYLOAD_SIZE "10000" CACHE STRING "Maximum payload size (bytes)" )

# always use C++17
set( CMAKE_CXX_STANDARD 17 )
# always use C++17 or higher
set_to_max( CMAKE_CXX_STANDARD 17 )

# This can be used to debug memory issues
#add_compile_options(-fsanitize=address)
Expand Down
1 change: 0 additions & 1 deletion library/service.cc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ namespace dripline
f_async_children(),
f_broadcast_key( a_config.get_value( "broadcast_key", "broadcast" ) )
{
LWARN( dlog, "Service (cpp) constructor" );
LDEBUG( dlog, "Service (cpp) created with config:\n" << a_config );
// get more values from the config
// default of f_listen_timeout_ms is in the listener class
Expand Down

0 comments on commit 88e23fa

Please sign in to comment.