From 16e4662b7d3a96e9d1c0e8980fc0b0c52ed0e7e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Tue, 25 Jun 2024 15:03:27 +0200 Subject: [PATCH] modules: Remove newly introduced "mount source" does not exist warning --- modules/collect.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/collect.go b/modules/collect.go index 0e59ede1977..cfb6d924942 100644 --- a/modules/collect.go +++ b/modules/collect.go @@ -676,7 +676,8 @@ func (c *collector) normalizeMounts(owner *moduleAdapter, mounts []Mount) ([]Mou } f.Close() } else { - c.logger.Warnf("module %q: mount source %q does not exist", owner.Path(), sourceDir) + // TODO(bep) commenting out for now, as this will create to much noise. + // c.logger.Warnf("module %q: mount source %q does not exist", owner.Path(), sourceDir) continue } }