We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab18fe1 commit 89712a5Copy full SHA for 89712a5
plugins/container/src/caps/async/async.cpp
@@ -41,9 +41,9 @@ bool my_plugin::start_async_events(
41
free((void *)enabled_engines);
42
43
// Merge back pre-existing containers to our cache
44
- m_containers = s_preexisting_containers;
45
- for(const auto &c : m_containers)
+ for(const auto &c : s_preexisting_containers)
46
{
+ m_containers.insert(c);
47
m_logger.log(fmt::format("Added pre-existing container: {}", c.first),
48
falcosecurity::_internal::SS_PLUGIN_LOG_SEV_TRACE);
49
}
0 commit comments