From fa338d3bfacd318d175aa4e743401758ba4b4522 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 afb0ad3649a581..aa649095c99dd3 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 {