diff --git a/CMakeLists.txt b/CMakeLists.txt index 2723e1e151b..c2c6f546f72 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -241,11 +241,9 @@ else() message(STATUS "Using bundled yaml-cpp in '${YAMLCPP_SRC}'") set(YAMLCPP_LIB "${YAMLCPP_SRC}/libyaml-cpp.a") set(YAMLCPP_INCLUDE_DIR "${YAMLCPP_SRC}/include") - # Once the next version of yaml-cpp is released (first version not requiring - # boost), we can switch to that and no longer pull from github. ExternalProject_Add(yamlcpp - GIT_REPOSITORY "https://github.com/jbeder/yaml-cpp.git" - GIT_TAG "7d2873ce9f2202ea21b6a8c5ecbc9fe38032c229" + URL "https://s3.amazonaws.com/download.draios.com/dependencies/yaml-cpp-yaml-cpp-0.6.2.tar.gz" + URL_MD5 "5b943e9af0060d0811148b037449ef82" BUILD_IN_SOURCE 1 INSTALL_COMMAND "") endif() diff --git a/userspace/falco/falco_outputs.h b/userspace/falco/falco_outputs.h index 016ebb61b9d..709dc7c39ff 100644 --- a/userspace/falco/falco_outputs.h +++ b/userspace/falco/falco_outputs.h @@ -89,9 +89,8 @@ class falco_outputs : public falco_common token_bucket m_notifications_tb; bool m_buffered; - bool m_time_format_iso_8601; - bool m_json_output; + bool m_time_format_iso_8601; std::string m_lua_add_output = "add_output"; std::string m_lua_output_event = "output_event";