From 5c8ef804d8e6407d6126cb7fa64dda72129dd039 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9na=C3=AFc=20Huard?= Date: Sat, 10 Jun 2023 14:04:10 +0200 Subject: [PATCH] Remove a no more used SBOM check config parameter (#17405) --- pkg/collector/corechecks/sbom/check.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkg/collector/corechecks/sbom/check.go b/pkg/collector/corechecks/sbom/check.go index afb0ad3649a58..aa649095c99dd 100644 --- a/pkg/collector/corechecks/sbom/check.go +++ b/pkg/collector/corechecks/sbom/check.go @@ -31,11 +31,10 @@ func init() { // Config holds the container_image check configuration type Config struct { - ChunkSize int `yaml:"chunk_size"` - NewSBOMMaxLatencySeconds int `yaml:"new_sbom_max_latency_seconds"` - ContainerPeriodicRefreshSeconds int `yaml:"periodic_refresh_seconds"` - HostSBOM bool `yaml:"host_sbom"` - HostPeriodicRefreshSeconds int `yaml:"host_periodic_refresh_seconds"` + ChunkSize int `yaml:"chunk_size"` + NewSBOMMaxLatencySeconds int `yaml:"new_sbom_max_latency_seconds"` + ContainerPeriodicRefreshSeconds int `yaml:"periodic_refresh_seconds"` + HostPeriodicRefreshSeconds int `yaml:"host_periodic_refresh_seconds"` } type configValueRange struct {