Skip to content

Commit

Permalink
post conflict resolution fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Przemyslaw Susko committed Oct 25, 2023
1 parent 7cd828c commit 11d6a0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions ebpfdiscoverysrv/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,10 @@ int main(int argc, char** argv) {
if (unixSignalThread.joinable()) {
unixSignalThread.join();
}
}
if (servicesProvider.joinable()) {
servicesProvider.join();
LOG_TRACE("Waiting for services providing thread to exit.");
if (servicesProvider.joinable()) {
servicesProvider.join();
}
}

LOG_DEBUG("Exiting the program.");
Expand Down
2 changes: 1 addition & 1 deletion libebpfdiscoveryproto/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS ${PROTO_SOURCES})
add_library(${TARGET} STATIC ${PROTO_SRCS} ${SOURCES})
target_link_libraries(${TARGET} protobuf::libprotobuf)
target_link_libraries(${TARGET} service)
target_include_directories(${TARGET} PRIVATE src PUBLIC ${CMAKE_CURRENT_BINARY_DIR}/${PROTO_DIR_NAME} headers)
target_include_directories(${TARGET} PRIVATE src PUBLIC ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/${PROTO_DIR_NAME} headers)

if (BUILD_TESTS)
list(APPEND TEST_SOURCES test/TranslatorTest.cpp)
Expand Down

0 comments on commit 11d6a0f

Please sign in to comment.