From 0b75433cee6390d905f595d98e40e07bb62aff7d Mon Sep 17 00:00:00 2001 From: Luca Guerra Date: Fri, 24 Jun 2022 13:19:13 +0000 Subject: [PATCH] update(gvisor): update to the latest sinsp interface Signed-off-by: Luca Guerra --- userspace/falco/app_actions/open_inspector.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/userspace/falco/app_actions/open_inspector.cpp b/userspace/falco/app_actions/open_inspector.cpp index 88f3073e..590f65e5 100644 --- a/userspace/falco/app_actions/open_inspector.cpp +++ b/userspace/falco/app_actions/open_inspector.cpp @@ -57,8 +57,7 @@ application::run_result application::open_inspector() else if(m_options.gvisor_config != "") { falco_logger::log(LOG_INFO, "Enabled event collection from gVisor. Configuration path: " + m_options.gvisor_config); - // XXX the first argument "/tmp/gvisor.sock" needs to be removed in favor of parsing everything from config." - m_state->inspector->open_gvisor("/tmp/gvisor.sock", m_options.gvisor_config, m_options.gvisor_root); + m_state->inspector->open_gvisor(m_options.gvisor_config, m_options.gvisor_root); } else {